Skip to main content
GET
/
partner
/
webhook-subscriptions
/
{subscriptionId}
Get webhook subscription
curl --request GET \
  --url https://api.prod.commenda.io/api/v1/partner/webhook-subscriptions/{subscriptionId} \
  --header 'x-api-key: <api-key>'
{
  "webhookSubscription": {
    "id": "whsub_123",
    "url": "https://partner.example.com/commenda/webhooks",
    "eventTypes": [
      "INCORPORATION_ISSUE_CREATED"
    ],
    "status": "ACTIVE",
    "secretPreview": "whsec_...c123",
    "createdAt": "2026-04-25T21:00:00.000Z"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.commenda.io/llms.txt

Use this file to discover all available pages before exploring further.

Retrieves one active webhook subscription for the authenticated partner. Read responses include secretPreview, not the full signing secret. If you lose the full secret returned at creation time, create a new subscription and delete the old one.

Authorizations

x-api-key
string
header
required

Path Parameters

subscriptionId
string
required

Webhook subscription identifier.

Response

Webhook subscription retrieved successfully

webhookSubscription
object
required