cURL
curl --request GET \ --url https://api.flowiq.live/get-webhooks \ --header 'Authorization: Bearer <token>'
{ "success": true, "count": 1, "webhooks": [ { "id": "0df9d480-f181-466b-ae8d-85216c16e8dd", "url": "https://your-server.com/webhook", "type": "message_received", "platform": "whatsapp", "created_at": "2026-03-04T00:03:57.023943+02:00" } ] }
List all registered webhooks for your organization.
curl "https://api.flowiq.live/get-webhooks" \ -H "Authorization: Bearer fiq_YOUR_API_KEY"
curl "https://api.flowiq.live/get-webhooks?platform=whatsapp" \ -H "Authorization: Bearer fiq_YOUR_API_KEY"
platform
whatsapp
{ "success": true, "count": 2, "webhooks": [ { "id": "0df9d480-f181-466b-ae8d-85216c16e8dd", "url": "https://your-server.com/webhook", "type": "message_received", "platform": "whatsapp", "created_at": "2026-03-04T00:03:57.023943+02:00" } ] }
Bearer token for authentication. Format: Bearer YOUR_BEARER_TOKEN
Bearer YOUR_BEARER_TOKEN
Filter by platform (e.g. whatsapp)
"whatsapp"
Webhooks retrieved successfully
Show child attributes