v1

latestOpenAPI 3.1.02026-07-141045121.7 KB
Subscriptions

Retrieve the signing secret of a webhook subscription

🔑

Required OAuth scope: webhookSecrets:read.

Retrieves the details of the signing secret associated with the provided webhook subscription ID.

get/api/v2/webhooks/subscriptions/{subscriptionId}/secrets

Path parameters

subscriptionIdstring ObjectId required
Example:507f1f77bcf86cd799439011

The unique ID of the webhook subscription.

Headers

360-api-version'v2.0' required

The version of the API.

Response

Returns the value of the current signing secret of the webhook subscription.

secretstring required

The signing secret of the webhook subscription. You can use this secret to verify the authenticity of the received events.

Example response

{
  "secret": "password123"
}