v1

latestOpenAPI 3.1.02026-07-1342111193.6 KB
Webhooks

List webhook events

Returns a paginated list of webhook events for a particular webhook endpoint.

Note: webhook events are currently retained for 30 days.

get/webhook/endpoints/{webhook_endpoint_id}/events

Path parameters

webhook_endpoint_idstring required
Example:3847dd41-8c90-499a-ac6e-10a027dd231f

Query parameters

deliveredboolean

Optionally filter webhook events by whether they were delivered successfully or not.

Headers

Arcadia-Versionstring required

The Arcadia-Version for the request

Response

Success

total_countinteger required

Example response

{
  "data": [
    {
      "id": "3847dd41-8c90-499a-ac6e-10a027dd231f",
      "webhook_endpoint_id": "3847dd41-8c90-499a-ac6e-10a027dd231f",
      "delivered": true
    }
  ],
  "total_count": 1
}