Aller au contenu principal

GET /templates/:uuid

Get a specific template given a uuid.

Required Parameters

ParameterTypeDescription
uuidstringThe uuid of the template

Example Request

curl -X GET "https://api.callbell.eu/v1/templates/ad42a09715814e6483b1c5debd6a2dbc" \
-H "Authorization: Bearer test_gshuPaZoeEG6ovbc8M79w0QyM" \
-H "Content-Type: application/json"

Response

ParameterTypeDescription
templateTemplate[]The object representing the Whatsapp template message.

Example Response

response.json
{
"template": {
"uuid": "ad42a09715814e6483b1c5debd6a2dbc",
"title": "Template title",
"templateType": "text",
"text": "Message text",
"createdAt": "2020-11-13T21:08:53Z"
}
}