v1

latestOpenAPI 3.0.1MIT2026-07-26336777.7 KB

Retrieve a specific webhook configuration by its identifier.

get/webhook/{webhookConfigId}

Path parameters

webhookConfigIdstring required

Identifier of the webhook configuration to retrieve

Response

Webhook configuration details

webhookConfigIdstring required

Unique identifier for the webhook configuration

webHookUrlstring required

Webhook endpoint URL that was registered

eventSignerstring required

Secret used to sign outgoing events

subscribedEventTypesstring[] required

Events configured for this webhook

isActiveboolean required

Indicates whether the webhook configuration is active

Example response

{
  "webhookConfigId": "whc_gKAi2oZN1AeU7BfV",
  "webHookUrl": "https://your-webhook-endpoint.com/webhook",
  "eventSigner": "secret_key",
  "subscribedEventTypes": [
    "intent.checkout_opened",
    "intent.created",
    "intent.failed",
    "intent.refunded",
    "intent.success",
    "subscription.trialing",
    "subscription.cycle_charged"
  ],
  "isActive": true
}