Skip to main content
POST
/
v1
/
webhooks
/
keys
/
{key_id}
/
reactivate
Reactivate a webhook encryption key
curl --request POST \
  --url http://127.0.0.1:8787/v1/webhooks/keys/{key_id}/reactivate \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "<string>",
    "webhook_endpoint_id": "<string>",
    "key_id": "<string>",
    "algorithm": "<string>",
    "key_type": "<string>",
    "jwk": {},
    "is_active": true,
    "created_at": "<string>",
    "updated_at": "<string>",
    "disabled_at": "<string>"
  },
  "error": {}
}

Documentation Index

Fetch the complete documentation index at: https://docs.kayle.id/llms.txt

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

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

key_id
string
required

The ID of the webhook encryption key to reactivate (e.g. whk_...).

Response

Webhook encryption key reactivated.

data
object
required
error
object
required