Dados do webhook
GET
/rest/webhook/{{instance_key}} Buscar dados do webhook
Este método te permite verificar qual url esta salva no webhook
Request
Parâmetros Header
Content-Type
string
requerido
Exemplo:
application/json
Authorization
string
requerido
Exemplo:
Bearer {{token}}
Request samples
Respostas
Success(200)
HTTP Code: 200
Content Type : JSONapplication/json
Esquema de Dados
error
boolean
requerido
message
string
requerido
webhookData
object
requerido
webhookUrl
string
requerido
webhookEnabled
boolean
requerido
webhookSecondaryUrl
string
requerido
webhookSecondaryEnabled
boolean
requerido
Exemplo
{
"error": true,
"message": "string",
"webhookData": {
"webhookUrl": "string",
"webhookEnabled": true,
"webhookSecondaryUrl": "string",
"webhookSecondaryEnabled": true
}
}