Skip to main content
GET
/
v2
/
notifications
/
webhooks
/
attempts
Get Webhook Event Submissions
curl --request GET \
  --url https://api.avenia.io:8443/v2/v2/notifications/webhooks/attempts \
  --header 'Authorization: Bearer <token>'
{
  "eventAttempts": [
    {
      "id": "<string>",
      "webhookEventId": "<string>",
      "webhookId": "<string>",
      "status": "<string>",
      "statusCode": 123,
      "responseBody": "<string>",
      "attemptNumber": 123,
      "acknowledged": true,
      "createdAt": "<string>",
      "updatedAt": "<string>"
    }
  ],
  "cursor": "<string>"
}

Get Webhook Event Submissions

GET request to /v2/notifications/webhooks/attempts

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

createdAfter
integer

Filter submissions created after timestamp

createdBefore
integer

Filter submissions created before timestamp

cursor
string

Cursor for pagination

webhookEventId
string

Filter by webhook event ID

unackedOnly
boolean

Filter unacknowledged submissions only

Response

OK

eventAttempts
object[]
required
cursor
string
required