v1

latestOpenAPI 3.0.02026-07-2640301.0 MB
Webhook Endpoints

partner/webhooks

This endpoint can be used to fetch a list of sent webhook notifications. Maximum date range is 1 month. If no date range is provided, it will default to the past 30 days.

get/partner/webhooks

Query parameters

AccountIDstring required

Your account ID

Keystring required

API key for the account

Signaturestring required

Hashed signature for the request

WebhookIDstring

The ID of webhook notifications you wish to fetch.

StartDatestring

The start date of the date range you wish to fetch. Format: YYYY-MM-DD

EndDatestring

The end date of the date range you wish to fetch. Format: YYYY-MM-DD

Response

Successboolean

True if the request was successful, false if it failed

ErrorMessagestring

Contains a description of the error if the request failed

Example response

{
  "Webhooks": {
    "0": {
      "Event": "transaction",
      "Module": "achfunding",
      "WebhookID": "12314",
      "Status": "in progress",
      "DateSent": "2024-01-01 12:34:56",
      "WebhookUrl": "https://example.com/webhook"
    }
  }
}