List webhook subscriptions
curl --request GET \
--url https://cerberus.eazybe.com/prod/api/v2/meta/wabas/{wabaId}/webhook-subscriptions \
--header 'Authorization: Bearer <token>'{
"data": [
{
"whatsapp_business_api_data": {
"id": "9988776655",
"link": "https://www.facebook.com/games/?app_id=9988776655",
"name": "Eazybe"
},
"override_callback_uri": "https://your-app.com/webhooks/whatsapp"
}
]
}Webhooks
List webhook subscriptions
Returns the webhook subscriptions configured for a WABA. Use it to check
whether the WABA is subscribed and which callback URL currently receives
its events. An empty data array means the WABA is not subscribed.
GET
/
meta
/
wabas
/
{wabaId}
/
webhook-subscriptions
List webhook subscriptions
curl --request GET \
--url https://cerberus.eazybe.com/prod/api/v2/meta/wabas/{wabaId}/webhook-subscriptions \
--header 'Authorization: Bearer <token>'{
"data": [
{
"whatsapp_business_api_data": {
"id": "9988776655",
"link": "https://www.facebook.com/games/?app_id=9988776655",
"name": "Eazybe"
},
"override_callback_uri": "https://your-app.com/webhooks/whatsapp"
}
]
}New to webhooks? Follow the step-by-step Instant Webhook guide — it covers the full setup, including ready-to-use callback code.
Authorizations
Eazybe bearer token. The token resolves the caller's organization and must be kept on the server.
Path Parameters
WhatsApp Business Account ID returned by GET /meta/phone-numbers.
Response
200 - application/json
Subscriptions returned (empty data = not subscribed)
Failure responses
| Status | Meaning | Action |
|---|---|---|
401 | Missing, invalid, or expired bearer token | Re-authenticate |
404 | wabaId not linked to your organization | Verify the id |
502 | Graph unreachable or timed out | Retry with backoff |
Show child attributes
Show child attributes
Was this page helpful?