Application WebhooksList application webhooks

List application webhooks

Returns a paginated list of webhook configurations for the given application. The application must belong to the authenticated merchant. Deleted configurations are excluded.

curl -X GET "https://api.example.com/api/v1/applications/example_string/webhooks?page=1&limit=10" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_TOKEN (JWT)"
{
  "items": [
    {
      "id": "8a1c2f9e-3d4b-4f5a-9b6c-7d8e9f0a1b2c",
      "url": "https://merchant.example.com/webhooks/kadosei",
      "isActive": true,
      "keyFingerprint": "whsec_****a3f2",
      "signingSecret": "whsec_full_secret_value",
      "subscribedEvents": [
        "session.completed",
        "session.expired"
      ],
      "lastTestAt": "2026-04-20T12:34:56.000Z",
      "lastTestStatus": "SUCCEEDED",
      "createdAt": "2026-01-15T08:00:00.000Z",
      "updatedAt": "2026-04-01T09:30:00.000Z"
    }
  ],
  "page": 1,
  "limit": 10,
  "totalItems": 42,
  "totalPages": 5,
  "hasPreviousPage": false,
  "hasNextPage": true
}
GET
/api/v1/applications/{applicationId}/webhooks
GET
Base URLstring

Target server for requests. Edit to use your own host.

Bearer Token (JWT)
Bearer Tokenstring
Required

Bearer token (JWT) - just enter the token, "Bearer" prefix will be added automatically

path
applicationIdstring
Required

ID of the application whose webhooks to list.

query
pagenumber

Page number (1-based).

Min: 1
query
limitnumber

Page size (items per page).

Min: 1 • Max: 100
Request Preview
Response

Response will appear here after sending the request

Authentication

header
Authorizationstring
Required

Bearer token (JWT). Authentication token required.

Path Parameters

applicationIdstring
Required

ID of the application whose webhooks to list.

Query Parameters

pagenumber

Page number (1-based).

Example:
1
limitnumber

Page size (items per page).

Example:
10

Responses

itemsarray
Required

Items in the current page.

pagenumber
Required

Current page number (1-based).

limitnumber
Required

Page size (items per page).

totalItemsnumber
Required

Total number of items.

totalPagesnumber
Required

Total number of pages.

hasPreviousPageboolean
Required

Whether there is a previous page.

hasNextPageboolean
Required

Whether there is a next page.