action envoice_tax_api_all { label: "Return all taxes for the account" provider: envoice method: GET path: "/api/tax/all" encoding: json input: { type: "object" properties: { "x-auth-key": { type: "string" } "x-auth-secret": { type: "string" } } required: ["x-auth-key", "x-auth-secret"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { CreatedOn: { type: "string" format: "date-time" description: "Date of creation" } Id: { type: "integer" format: "int32" description: "Entity id" } Name: { type: "string" description: "Name of the task" } Percentage: { type: "number" format: "double" description: "Task percentage. Ex: 18%" } } } } }