API URL | /api/agent/plugin_call |
---|
Method | GET |
---|
Esta API realiza uma chamada para o destinatário especificado através do agente logado no Evolux.
...
A API responde uma mensagem em formato JSON:
Parâmetros
destination | Telefone do destinatário |
---|
Exemplos de requisição
GET
Code Block |
---|
httphttps://example.evolux.net.br/api/agent/plugin_call/551132325555 |
cURL
Code Block |
---|
curl httphttps://example.evolux.net.br/api/agent/plugin_call/551132325555 |
JavaScript
Code Block |
---|
var call = function (destination) {
var url = 'https://example.evolux.net.br/api/agent/plugin_call/' + destination;
$.get(url, function (response) {
if(response.status != 'success') {
alert('Erro ao ligar para: \'' + destination + '\'');
}
}).fail(function() {
alert('Erro ao ligar para: \'' + destination + '\'');
});
}
|
Exemplos de respostas
Sucesso
...