Step 2: retrieve a webhook event type

You can look up details about a webhook event type by specifying its ID in the following request.

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

If your request is successful, you'll receive a 200 response containing details about the webhook event type.

Copy
Copied
{
  "id": "7e71bf60-40f3-489f-bd09-e03035d5cd0a",
  "name": "AccountCreated",
  "enabled": true,
  "createdAt": "2023-03-29T12:46:41.000Z",
  "updatedAt": "2023-03-29T12:46:41.000Z"
}

Next