curl --request GET \
--url https://api.timelyai.com.br/v1/agents/{id}/webhooks \
--header 'x-api-key: <api-key>'{
"data": {
"webhooks": [
{
"url": "https://exemplo.com/webhook",
"events": [
"conversation.started",
"conversation.ended",
"message.received"
],
"headers": {},
"is_active": true
}
]
}
}Retorna os webhooks configurados para um agente. Requer scope agents:read.
curl --request GET \
--url https://api.timelyai.com.br/v1/agents/{id}/webhooks \
--header 'x-api-key: <api-key>'{
"data": {
"webhooks": [
{
"url": "https://exemplo.com/webhook",
"events": [
"conversation.started",
"conversation.ended",
"message.received"
],
"headers": {},
"is_active": true
}
]
}
}Chave de API para autenticação. Obtenha sua chave em https://app.timelyai.com.br/developers
ID único do recurso (UUID)
Webhooks do agente
Show child attributes