curl --request PUT \
--url https://api.plazbot.com/api/template/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'x-workspace-id: <x-workspace-id>' \
--data '
{
"workspaceId": "<string>",
"elementName": "<string>",
"languageCode": "<string>",
"category": "<string>",
"templateType": "<string>",
"components": [
{
"type": "<string>",
"format": "<string>",
"text": "<string>",
"buttons": [
{
"type": "<string>",
"text": "<string>",
"phone_number": "<string>",
"url": "<string>",
"tagIds": [
"<string>"
],
"segmentationIds": [
"<string>"
],
"phaseIds": [
"<string>"
],
"agentIds": [
"<string>"
]
}
],
"variables": [
{
"variable": "<string>",
"example": "<string>"
}
]
}
]
}
'