Blooio API Reference
Webhooks

Rotate webhook signing secret

Generate a new signing secret for the webhook. The new secret is returned only once in this response - store it securely. The old secret becomes invalid immediately.

POST
/webhooks/{webhookId}/secret/rotate

Authorization

BearerAuth
AuthorizationBearer <token>

API key authentication. Use your API key as the bearer token.

In: header

Path Parameters

webhookId*string

Webhook ID

Match^wh_[a-zA-Z0-9]+$

Response Body

application/json

application/json

application/json

curl -X POST "https://backend.blooio.com/v2/api/webhooks/wh_abc123def456/secret/rotate"
{
  "webhook_id": "string",
  "signing_secret": "string",
  "rotated_at": 0,
  "rotated_by": "string",
  "rotation_count": 0
}
{
  "error": "string",
  "status": 0
}
{
  "error": "string",
  "status": 0
}