Retrieve all webhooks events

Get a list of registered webhooks events.

GET
/webhooks/{webhookId}/events
AuthorizationBearer <token>

In: header

Path Parameters

webhookId*string

Unique identifier of the webhook

Query Parameters

id?string

Filter resources by their unique identifier

autocomplete?string

Search term for autocomplete functionality

limit?integer

How many items to return at one time (max 100)

Formatint64
next?string

Pagination token for retrieving the next page of results

order?string

Sort order for the results (ascending or descending)

Value in"asc" | "desc"
sortBy?string

Field name to sort the results by

webhook_id?string

Filter events by webhook ID

org_id?string

Filter events by organization ID

type?string

Filter events by webhook type

Value in"address_activity" | "template_activity" | "action_activity"
status?string

Filter events by their status

when_created[$gt]?string

Filter events created after this date and time

Formatdate-time
when_created[$lt]?string

Filter events created before this date and time

Formatdate-time
when_created[$gte]?string

Filter events created on or after this date and time

Formatdate-time
when_created[$lte]?string

Filter events created on or before this date and time

Formatdate-time

Response Body

application/json

application/json

application/json

application/json

curl -X GET "https://api-testnet.dual.network/webhooks/string/events"
{
  "events": [
    {
      "id": "string",
      "webhook_id": "wh_octjglnywaupz6th",
      "type": "template_activity",
      "payload": "string",
      "signature": "string",
      "url": "https://example.com/webhook",
      "status": "delivered",
      "error": {
        "code": 0,
        "message": "string",
        "details": {}
      },
      "when_modified": "2021-10-01T12:00:00Z",
      "when_created": "2021-10-01T12:00:00Z"
    }
  ],
  "next": "string"
}
{
  "code": 0,
  "message": "string",
  "details": {}
}
{
  "code": 0,
  "message": "string",
  "details": {}
}
{
  "code": 0,
  "message": "string",
  "details": {}
}