action envoice_tax_api_new { label: "Create a tax" provider: envoice method: POST path: "/api/tax/new" encoding: form input: { type: "object" properties: { 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: "integer" format: "int32" } }