v4

latestOpenAPI 3.0.0raw.githubusercontent.com2026-05-15152735.4 KB
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

limitinteger

Maximum number of results to return

event_idstring

Filter by specific event ID

status'succeeded' | 'failed' | 'skipped'

Filter by event outcome

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.

has_moreboolean

Indicates if more results are available

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
}