action envoice_invoice_api_status { label: "Retrieve the status of the invoice" provider: envoice method: GET path: "/api/invoice/status" encoding: json input: { type: "object" properties: { id: { type: "integer" format: "int32" } "x-auth-key": { type: "string" } "x-auth-secret": { type: "string" } } required: ["id", "x-auth-key", "x-auth-secret"] additionalProperties: false } output: { type: "string" enum: ["Draft", "Paid", "Unpaid", "Overdue", "Void"] } }