Este documento contiene:
GET https://webservice.woztell.com/webhook/templates
{
"WOZTELL_ADMIN":"your-woztell-admin-email",
"WOZTELL_TOKEN":"your-woztell-token",
"WOZTELL_NUMBER":"your-woztell-number" }
Nombre de parámetro | Tipo de dato | Descripción | Posibles Valores |
WOZTELL_ADMIN* | String | Dirección de correo electrónico de tu cuenta de Woztell | |
WOZTELL_TOKEN* | String | Tu token de la cuenta de Woztell. | abc-defgh-ijk-123 |
WOZTELL_NUMBER | String | Número de teléfono de Woztell validado por WhatsApp. Si no envías ningún número, se usará el número principal de WhatsApp | "+1-631-555-1002", "16315551002", "001(631)555-1002"or "1 631 555 1002" |
Número de teléfono | Número de teléfono traducido |
"+1-631-555-1002" | "+16315551002" |
"6315551002" | "+6315551002" (inválido) |
"1-631-555-1002" | "+16315551002" |
001 (516) 283-7151" | "+15162837151" |
"+54 9 11 5612-1008" | "+5491156121008" |
ESTADO | DESCRIPCIÓN |
ERROR | MÉTODO NO PERMITIDO |
ERROR | AUTORIZACIÓN INVÁLIDA |
{
"STATUS":"ERROR",
"DESCRIPTION":"INVALID JSON DATA" }
ESTADO | PLANTILLAS |
EXITOSO | JSON con plantillas |
{
"STATUS":"SUCCESS",
"TEMPLATES": {
"0": {
"CODE": "ESP1",
"TEXT": "You made a purchase for {{1}} using a credit card ending in {{2}}.",
"PARAMETERS": "2"
},
...
"N": {
"CODE": "ESP2",
"TEXT": "I'm sorry that I wasn't able to respond to your concerns yesterday but I’m happy to assist you now. If you’d like to continue this discussion, please reply with ‘yes’.",
"PARAMETERS": "0"
}, }
GET https://webservice.woztell.com/webhook/messages
{
"WOZTELL_ADMIN":"admin@woztell.com",
"WOZTELL_TOKEN":"123-45678-90abcdefg-hij-klmn",
"WOZTELL_NUMBER":"0016665554444" }
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://webservice.woztell.com/webhook/templates?WOZTELL_ADMIN=admin@woztell.com&WOZTELL_TOKEN=123-45678-90abcdefg-hij-klmn&WOZTELL_NUMBER=0016665554444',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'GET'
));
$response = curl_exec($curl);
curl_close($curl); echo $response;