Gerencie os atendimentos da sua empresa forma fácil, rápida e eficiente.

Ver categorias

Template API Oficial

2 minutos de leitura

Envio de template sem variável #

<?php

$curl = curl_init();

curl_setopt_array($curl, array(
  CURLOPT_URL => 'https://{BACKEND_URL}/api/messages/sendOfficial',
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => '',
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 0,
  CURLOPT_FOLLOWLOCATION => true,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => 'POST',
  CURLOPT_POSTFIELDS =>'{
    "number": "554799444499",
    "name": "vars_001", // nome da template
    "language": "pt_BR"
}',
  CURLOPT_HTTPHEADER => array(
    'Content-Type: application/json',
    'Authorization: Bearer seutoken'
  ),
));

$response = curl_exec($curl);

curl_close($curl);
echo $response;

Envio de template com variável #

<?php

$curl = curl_init();

curl_setopt_array($curl, array(
  CURLOPT_URL => 'https://{BACKEND_URL}/api/messages/sendOfficial',
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => '',
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 0,
  CURLOPT_FOLLOWLOCATION => true,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => 'POST',
  CURLOPT_POSTFIELDS =>'{
    "number": "554799444499",
    "name": "vars_001", // nome da template
    "language": "pt_BR",
    "template": [
        {
            "type": "text",
            "text": "valor 1" // valor variavel 1
        },
        {
            "type": "text",
            "text": "Valor 2" // valor variavel 2
        },
        {
            "type": "text",
            "text": "Valor 3" // valor variavel 3
        }
    ]
}',
  CURLOPT_HTTPHEADER => array(
    'Content-Type: application/json',
    'Authorization: Bearer seutoken'
  ),
));

$response = curl_exec($curl);

curl_close($curl);
echo $response;

Envio de template customizado #

<?php

$curl = curl_init();

curl_setopt_array($curl, array(
  CURLOPT_URL => 'https://{BACKEND_URL}/api/messages/sendOfficialCustom',
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => '',
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 0,
  CURLOPT_FOLLOWLOCATION => true,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => 'POST',
  CURLOPT_POSTFIELDS =>'{
    "number": "554799444499",
    "name": "vars_001",
    "language": "pt_BR",
    "template": [
                    {
                        "type": "header",
                        "parameters": [{
                                "type": "image",
                                "image": {
                                    "link": "URL DA IMAGEM"
                                }
                            }
                        ]        
                    }
                 ]        
              }                      
}',
  CURLOPT_HTTPHEADER => array(
    'Content-Type: application/json',
    'Authorization: Bearer seutoken'
  ),
));

$response = curl_exec($curl);

curl_close($curl);
echo $response;