Step 1: list all webhook event types

In order to create a webhook, you'll need to choose an event type that describes the webhook's trigger.

Let's start by getting a list of all available webhook event types.

SandboxProduction
Copy
Copied
curl -i -X GET \
  'https://api-sandbox.equalsmoney.com/v2/webhooks/event-types' \ 
  -H 'Authorization: ApiKey {apiKey}' # Your API key
Copy
Copied
curl -i -X GET \
  'https://api.equalsmoney.com/v2/webhooks/event-types' \ 
  -H 'Authorization: ApiKey {apiKey}' # Your API key

If your request is successful, you'll receive a 200 response containing a list of available webhook event types with their id and name.

Copy
Copied
[
  {
    "id": "2704f4e3-7790-43a0-905c-e0a6aaf89cdd",
    "name": "3DSAuthRequest",
    "enabled": true,
    "createdAt": "2023-04-14T15:08:58.000Z",
    "updatedAt": "2023-04-19T09:11:10.000Z"
  },
  {
    "id": "a4dcc403-41aa-4f2e-acf6-32dbaec78e72",
    "name": "AccountActivated",
    "enabled": true,
    "createdAt": "2023-04-04T10:02:56.000Z",
    "updatedAt": "2023-04-04T10:02:56.000Z"
  },
  {
    "id": "7e71bf60-40f3-489f-bd09-e03035d5cd0a",
    "name": "AccountCreated",
    "enabled": true,
    "createdAt": "2023-03-29T12:46:41.000Z",
    "updatedAt": "2023-03-29T12:46:41.000Z"
  },
  {
    "id": "25d5b682-7449-4d07-b6fc-7c9bf1239561",
    "name": "BoxCredited",
    "enabled": true,
    "createdAt": "2022-10-26T12:31:47.000Z",
    "updatedAt": "2022-10-26T12:31:47.000Z"
  },
  {
    "id": "fc05160e-0f0c-44e0-87a8-e2f093b09ff4",
    "name": "BoxDebited",
    "enabled": true,
    "createdAt": "2022-12-22T11:24:39.000Z",
    "updatedAt": "2022-12-22T11:24:39.000Z"
  },
  {
    "id": "a1920089-8cdd-404d-b1aa-624bc4170b40",
    "name": "CardStateUpdated",
    "enabled": true,
    "createdAt": "2023-10-18T15:17:40.000Z",
    "updatedAt": "2023-10-18T15:17:40.000Z"
  },
  {
    "id": "da153b21-9c8d-46d2-8911-83c6da10655a",
    "name": "CardTransaction",
    "enabled": true,
    "createdAt": "2023-03-14T12:06:10.000Z",
    "updatedAt": "2023-05-16T10:48:23.000Z"
  },
  {
    "id": "06e852d1-fcd5-43e6-babe-65a06a43266b",
    "name": "OrderCancelled",
    "enabled": true,
    "createdAt": "2022-10-26T12:31:47.000Z",
    "updatedAt": "2022-10-26T12:31:47.000Z"
  },
  {
    "id": "64b18e0e-4561-4509-ad35-ecc8d342d291",
    "name": "RecipientCreated",
    "enabled": true,
    "createdAt": "2022-10-26T12:31:47.000Z",
    "updatedAt": "2023-01-04T15:19:37.000Z"
  },
  {
    "id": "ed6dfe0e-6cf2-43d5-9f35-aebf873f4e77",
    "name": "RecipientDeleted",
    "enabled": true,
    "createdAt": "2022-10-26T12:31:47.000Z",
    "updatedAt": "2022-10-26T12:31:47.000Z"
  },
  {
    "id": "f1c61286-49e0-42ae-a4d1-281c1ecb0ca4",
    "name": "RecipientUpdated",
    "enabled": true,
    "createdAt": "2022-10-26T12:31:47.000Z",
    "updatedAt": "2022-10-26T12:31:47.000Z"
  }
]

Next