action svix_expunge_attempt_content_api_v1_app_app_id_msg_msg_id_attempt_att { label: "Delete attempt response body" description: "Deletes the given attempt's response body. Useful when an endpoint accidentally returned sensitive content." provider: svix method: DELETE path: "/api/v1/app/{app_id}/msg/{msg_id}/attempt/{attempt_id}/content/" encoding: json input: { type: "object" properties: { app_id: { type: "string" description: "The application's ID or UID" } attempt_id: { type: "string" } "idempotency-key": { type: "string" description: "The request's idempotency key" } msg_id: { type: "string" description: "The message's ID or eventID" } } required: ["app_id", "attempt_id", "msg_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }