action svix_get_endpoint_secret_api_v1_app_app_id_endpoint_endpoint_id_secre { label: "Get Endpoint Secret" description: "Get the endpoint's signing secret.\n\nThis is used to verify the authenticity of the webhook.\nFor more information please refer to [the consuming webhooks docs](https://docs.svix.com/consuming-webhooks/)." provider: svix method: GET path: "/api/v1/app/{app_id}/endpoint/{endpoint_id}/secret/" 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" } } required: ["app_id", "endpoint_id"] additionalProperties: false } output: { type: "object" required: ["key"] properties: { 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." } } } }