GET
/
settings
/
webhook

Response

Might return an empty body if there’s no settings yet stored for your account.

webhookEnabled
string
required

Indicates whether the webhook is currently enabled, and working properly.

webhookStatusDetail
string

The message indicating the reason for the webhook being disabled, or ‘OK’ if the webhook is enabled. This gets updated with the message of the last failed request to the webhook.

webhookRequestsProcessing
number
required

The number of webhook requests currently being processed. It gets updated as the requests are processed.

webhookRequestsFailed
number
required

The number of failed webhook requests for your acccount. It gets updated as the retries are attempted.

Example response:

{
  "webhookEnabled": false,
  "webhookStatusDetail": "Request failed with status code 404",
  "webhookRequestsProcessing": 0,
  "webhookRequestsFailed": 3
}