action svix_rotate_endpoint_secret_api_v1_app_app_id_endpoint_endpoint_id_se { label: "Rotate Endpoint Secret" description: "Rotates the endpoint's signing secret. The previous secret will be valid for the next 24 hours." provider: svix method: POST path: "/api/v1/app/{app_id}/endpoint/{endpoint_id}/secret/rotate/" encoding: json input: { type: "object" properties: { app_id: { type: "string" description: "The application's ID or UID" } endpoint_id: { type: "string" description: "The endpoint's ID or UID" } "idempotency-key": { type: "string" description: "The request's idempotency key" } key: { type: "string" description: "The endpoint's verification secret. If `null` is passed, a secret is automatically generated. Format: `base64` encoded random bytes optionally prefixed with `whsec_`. Recommended size: 24." } } required: ["app_id", "endpoint_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }