action envoice_invoice_api_pdf { label: "Return the PDF for the invoice" provider: envoice method: GET path: "/api/invoice/pdf" encoding: json input: { type: "object" properties: { id: { type: "integer" format: "int32" } signedVersion: { type: "boolean" } "x-auth-key": { type: "string" } "x-auth-secret": { type: "string" } } required: ["id", "x-auth-key", "x-auth-secret"] additionalProperties: false } output: { type: "object" properties: { Link: { type: "string" description: "Unique link to the invoice" } } } }