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"
  }
}
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