action svix_expunge_message_payload_api_v1_app_app_id_msg_msg_id_content_del { label: "Delete message payload" description: "Delete the given message's payload. Useful in cases when a message was accidentally sent with sensitive content.\n\nThe message can't be replayed or resent once its payload has been deleted or expired." provider: svix method: DELETE path: "/api/v1/app/{app_id}/msg/{msg_id}/content/" encoding: json input: { type: "object" properties: { app_id: { type: "string" description: "The application's ID or UID" } "idempotency-key": { type: "string" description: "The request's idempotency key" } msg_id: { type: "string" description: "The message's ID or eventID" } } required: ["app_id", "msg_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }