v1

latestOpenAPI 3.0.1MIT2026-07-26336777.7 KB

Retrieve the list of webhook configurations that are currently active for your account.

get/webhook

Response

List of webhook configurations

Example response

{
  "data": [
    {
      "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
    }
  ]
}