action envoice_invoice_api_send_to_accountant { label: "Send the provided invoice to the accountant" provider: envoice method: POST path: "/api/invoice/sendtoaccountant" encoding: form input: { type: "object" properties: { Id: { type: "integer" format: "int32" description: "Id of the invoice" } "x-auth-key": { type: "string" } "x-auth-secret": { type: "string" } } required: ["x-auth-key", "x-auth-secret"] additionalProperties: false } output: { type: "integer" format: "int32" } }