Events
getWebhookEventsV2
List webhook events and filter them by status, timestamp, etc.
post/v2/webhooks/configs/{configId}/events
Path parameters
configIdstring required
Short uuid to identify the webhook configuration.
Request body
Example request
{
"limit": 25,
"cursor": {
"created_at": "2025-10-31T12:34:56Z",
"event_id": "evt_1234567890abcdef"
},
"timestamp": {
"from": "2025-10-01T00:00:00Z",
"to": "2025-10-31T23:59:59Z"
},
"event_id": "evt_1234567890abcdef",
"status": "succeeded"
}Response
Success - events where loaded successfully. Empty array if org has no events.
Example response
{
"data": [
{
"created_at": "2021-04-27T12:01:13.000Z",
"metadata": {
"action": "Manual triggered by user with id 123456"
}
}
],
"next_cursor": {
"created_at": "2025-10-31T12:34:56Z",
"event_id": "evt_1234567890abcdef"
},
"has_more": true
}