List Webhooks

List Webhooks

get

This endpoint retrieves a paginated list of all webhooks associated with the authenticated merchant account.

scope: webhooks.read

Header parameters
AcceptstringOptionalExample: application/json
Content-TypestringOptionalExample: application/json
X-API-KeystringRequiredExample: {{API_KEY}}
Responses
200

Success

application/json
get
GET /banking/v1/webhooks HTTP/1.1
Host: api.aurixpay.ws
X-API-Key: text
Accept: */*
{
  "data": [
    {
      "id": "0197b783-6e56-71af-b35e-8e4d061943f9",
      "merchant_id": "0197a8b8-cbed-7316-aa6f-df1a22a2e754",
      "url": "https://www.youtube.com/watch?v=amazLyuDbTA",
      "events": [
        "transaction.created",
        "transaction.updated"
      ],
      "created_at": "2025-06-28T17:08:53.000000Z",
      "updated_at": "2025-06-28T17:08:53.000000Z",
      "deleted_at": null,
      "bank_account_id": "0197a8b8-d108-7172-88b5-25ccbbbaa1f3"
    },
    {
      "id": "0197b7fc-c8f1-73d8-b475-a01a03be9638",
      "merchant_id": "0197a8b8-cbed-7316-aa6f-df1a22a2e754",
      "url": "https://www.youtube.com/watch?v=amazLyuDbT",
      "events": [
        "transaction.created",
        "transaction.updated"
      ],
      "created_at": "2025-06-28T19:21:26.000000Z",
      "updated_at": "2025-06-28T19:21:26.000000Z",
      "deleted_at": null,
      "bank_account_id": "0197a8b8-d108-7172-88b5-25ccbbbaa1f3"
    }
  ],
  "total": 2,
  "currentPage": 1,
  "perPage": 15
}