Skip to main content
GET
/
v1
/
outbound-webhook-events
List outbound webhook events
curl --request GET \
  --url http://localhost:3001/v1/outbound-webhook-events
{
  "items": [
    {
      "id": "<string>",
      "organizationId": "<string>",
      "eventType": "<string>",
      "sourceKey": "<string>",
      "endpointCount": 123,
      "payload": {},
      "deliveries": [
        {
          "id": "<string>",
          "organizationId": "<string>",
          "endpointId": "<string>",
          "endpointName": "<string>",
          "endpointUrl": "<string>",
          "attemptCount": 123,
          "responseStatusCode": 123,
          "lastError": "<string>",
          "nextRetryAt": "2023-11-07T05:31:56Z",
          "attemptedAt": "2023-11-07T05:31:56Z",
          "deliveredAt": "2023-11-07T05:31:56Z",
          "createdAt": "2023-11-07T05:31:56Z",
          "updatedAt": "2023-11-07T05:31:56Z"
        }
      ],
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z"
    }
  ],
  "total": 123,
  "limit": 123,
  "offset": 123
}

Headers

authorization
string
Minimum string length: 1
x-organization-id
string
Minimum string length: 1

Query Parameters

limit
integer
default:25
required
Required range: 1 <= x <= 100
offset
integer
default:0
required
Required range: 0 <= x <= 9007199254740991
eventType
string
Minimum string length: 1
status
enum<string>
Available options:
pending,
delivered,
failed,
skipped

Response

Default Response

items
OutboundWebhookEventSnapshot ยท object[]
required
total
integer
required
limit
integer
required
offset
integer
required