action svix_get_endpoint_headers_api_v1_app_app_id_endpoint_endpoint_id_head { label: "Get Endpoint Headers" description: "Get the additional headers to be sent with the webhook" provider: svix method: GET path: "/api/v1/app/{app_id}/endpoint/{endpoint_id}/headers/" 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" description: "The value of the headers is returned in the `headers` field.\n\nSensitive headers that have been redacted are returned in the sensitive field." required: ["headers", "sensitive"] properties: { headers: { type: "object" } sensitive: { type: "array" items: { type: "string" } } } } }