action envoice_invoice_api_change_status { label: "Change invoice status" provider: envoice method: POST path: "/api/invoice/changestatus" encoding: form input: { type: "object" properties: { Id: { type: "integer" format: "int32" description: "Invoice Id" } Status: { type: "string" description: "New status of the invoice" enum: ["Draft", "Paid", "Unpaid", "Overdue", "Void"] } "x-auth-key": { type: "string" } "x-auth-secret": { type: "string" } } required: ["x-auth-key", "x-auth-secret"] additionalProperties: false } output: { type: "boolean" } }