Skip to main content
GET
/
message-templates
Listar templates de mensagens
curl --request GET \
  --url https://api.example.com/message-templates \
  --header 'X-Api-Key: <api-key>'
{
  "templates": [
    {
      "id": "<string>",
      "name": "<string>",
      "language": "<string>",
      "category": "<string>",
      "status": "<string>",
      "components": [
        {
          "type": "<string>",
          "text": "<string>",
          "format": "<string>",
          "buttons": [
            {
              "text": "<string>",
              "type": "<string>"
            }
          ]
        }
      ]
    }
  ],
  "next": "<string>",
  "previous": "<string>"
}

Authorizations

X-Api-Key
string
header
required

Chave privada da API

Query Parameters

limit
number
default:10

Response

200 - application/json

Default Response

templates
object[]
required
next
string | null
previous
string | null