action apideck_invoices_delete { label: "Delete Invoice" description: "Delete Invoice" provider: apideck method: DELETE path: "/accounting/invoices/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } raw: { type: "boolean" } "x-apideck-app-id": { type: "string" } "x-apideck-consumer-id": { type: "string" } "x-apideck-service-id": { type: "string" } } required: ["id", "x-apideck-app-id", "x-apideck-consumer-id"] additionalProperties: false } output: { type: "object" required: ["data", "operation", "resource", "service", "status", "status_code"] properties: { data: { type: "object" properties: { downstream_id: { type: "string" description: "The third-party API ID of original entity" } id: { type: "string" description: "A unique identifier for an object." } } } operation: { type: "string" description: "Operation performed" } resource: { type: "string" description: "Unified API resource name" } service: { type: "string" description: "Apideck ID of service provider" } status: { type: "string" description: "HTTP Response Status" } status_code: { type: "integer" description: "HTTP Response Status Code" } } } }