GET
/webhook-eventsScope: readOfficial + BasicList received events.
Returns the raw events (messages, statuses, QR) received from connections for auditing and external reprocessing.
Path parameters
No additional parameters.
Query parameters
| Field | Type | Description |
|---|---|---|
connection_idoptional | uuid | Filters by connection. |
sourceoptional | meta | freemium | Filters by source: Official connection (meta) or Basic plan connection (freemium). |
eventoptional | string | Filters by event name (e.g. messages). |
limitoptional | number | Records per page. Default 50; maximum 200 on most list endpoints. |
offsetoptional | number | Initial page index. Use pagination.next_offset to fetch the next page. |
Body fields
This endpoint does not receive a JSON body.
Ready examples
curl -X GET "https://connect.zyronstack.com/api/v1/webhook-events?source=meta&limit=20&offset=0" \
-H "Authorization: Bearer SUA_CHAVE_API"Responses
| 200 | Events returned. |
Response example
{
"data": [
{
"id": 30,
"source": "meta",
"event": "messages",
"connection_id": "<CONNECTION_ID>",
"payload": { "messages": [{ "from": "5511999998888", "type": "text" }] },
"created_at": "2026-07-13T13:28:27.898Z"
}
],
"pagination": { "limit": 20, "offset": 0, "total": 2, "next_offset": null }
}