## Rotates the webhook signing key for the account **post** `/v1/account/rotate_webhook_signing_key` Rotates the webhook signing key for the account. Returns only the new key. ### Returns - `RotateWebhookSigningKeyResponse = object { webhookEventsHmacSecret }` RotateWebhookEventsHmacSecretResponse is a response to a RotateWebhookEventsHmacSecretRequest. - `webhookEventsHmacSecret: optional string` ### Example ```http curl https://api.cadenya.com/v1/account/rotate_webhook_signing_key \ -X POST \ -H "Authorization: Bearer $CADENYA_API_KEY" ``` #### Response ```json { "webhookEventsHmacSecret": "webhookEventsHmacSecret" } ```