WebhookSubscriptions
RetrieveWebhookSubscription
Retrieves a webhook subscription identified by its ID.
get/v2/webhooks/subscriptions/{subscription_id}
Path parameters
subscription_idstring required
[REQUIRED] The ID of the Subscription to retrieve.
Response
Success
Example response
{
"subscription": {
"api_version": "2021-12-15",
"created_at": "2022-01-10 23:29:48 +0000 UTC",
"enabled": true,
"event_types": [
"payment.created",
"payment.updated"
],
"id": "wbhk_b35f6b3145074cf9ad513610786c19d5",
"name": "Example Webhook Subscription",
"notification_url": "https://example-webhook-url.com",
"signature_key": "1k9bIJKCeTmSQwyagtNRLg",
"updated_at": "2022-01-10 23:29:48 +0000 UTC"
}
}