action svix_delete_application_api_v1_app_app_id_delete { label: "Delete Application" description: "Delete an application." provider: svix method: DELETE path: "/api/v1/app/{app_id}/" 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" } } required: ["app_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }