action envoice_work_type_api_new { label: "Create a work type" provider: envoice method: POST path: "/api/worktype/new" encoding: form input: { type: "object" properties: { Title: { type: "string" description: "Indicates the title of of the work type (Logo design, development...)" } "x-auth-key": { type: "string" } "x-auth-secret": { type: "string" } } required: ["x-auth-key", "x-auth-secret"] additionalProperties: false } output: { type: "integer" format: "int32" } }