Este artículo, te mostraremos como hacer consultas a la entidad Llamadas, basándonos para estos ejemplos en https://www.postman.com/.
Llamadas
Trae el listado de llamadas para el usuario luego de una fecha:
Nombre | Tipo | Descripcion |
url | string | Call details API URL |
id | integer | ID de la llamada |
owner | string | Call owner username |
content_object | string | Contact or company name related to the call, if avaliable |
type | string | Call |
comment | string | Comment on the call |
outcome | string | Call |
audio_url | string | URL to the call recording, if avaliable |
duration | float | call duration |
Identificador | Tipo |
incoming | Incoming |
outgoing | Outgoing |
Identificador | Salientes |
no_answer | no responde |
busy | ocupado |
left_voicemail | left voice mail |
call_later | call later |
wrong_number | wrong number |
connected | connected |
not_interested | not interested |
Traer detalles de una llamada:
Donde call-id es un integer.
Registrar una llamada:
Y un Body, raw en formato JSON con lo siguiente:
{
"owner": "[email protected]",
"type": "outgoing",
"comment": "Registering a call via API",
"outcome": "connected",
"audio_url": "",
"contact_phone": "+1(878)5651357 "
}