action apideck_invoice_items_delete { label: "Delete Invoice Item" description: "Delete Invoice Item" provider: apideck method: DELETE path: "/accounting/invoice-items/{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" required: ["id"] properties: { id: { type: "string" description: "The unique identifier of the resource" } } } 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" } } } }