action envoice_tax_api_update { label: "Update an existing tax" provider: envoice method: POST path: "/api/tax/update" encoding: form input: { type: "object" properties: { 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%" } "x-auth-key": { type: "string" } "x-auth-secret": { type: "string" } } required: ["x-auth-key", "x-auth-secret"] additionalProperties: false } output: { type: "object" additionalProperties: true } }