Agent Webhooks
Inbound webhooks — external systems POST here to send data to your agents
How to use
Send POST requests to the webhook URL. The agent will receive the payload as a message and can process it like any other task.
# Example with curl:
curl -X POST https://api.aiqos.io/api/webhooks/inbound/wh_xxxxx \
-H "Content-Type: application/json" \
-H "X-Webhook-Signature: sha256=<hmac>" \
-d '{"event": "ticket.created", "data": {...}}'
If a secret is configured, include the HMAC-SHA256 signature in theX-Webhook-Signature header.