Skip to main content
GET
/
webhooks
List all webhooks
curl --request GET \
  --url https://api.sandbox.iron.xyz/api/webhooks \
  --header 'X-API-Key: <api-key>'
{
  "items": [
    {
      "created_at": "2023-11-07T05:31:56Z",
      "enabled": true,
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "label": "<string>",
      "partner_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "topics": [
        "Transaction"
      ],
      "updated_at": "2023-11-07T05:31:56Z",
      "url": "<string>",
      "last_failure": "2023-11-07T05:31:56Z",
      "last_failure_reason": "<string>"
    }
  ],
  "cursor": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "prev_cursor": null
}

Authorizations

X-API-Key
string
header
required

API Key

Query Parameters

cursor
string<uuid>

Paging: the cursor field from previous page

page_size
integer<uint32>
default:10

Paging: the requested page size (max 100)

Response

Listing successful

PagedList

A list of items with cursors used to fetch the next or previous page

items
Webhook · object[]
required

The list of items

cursor
string<uuid>

The cursor used to fetch the next page

prev_cursor
string<uuid>

The cursor used to fetch the previous page