action envoice_work_type_api_details { label: "Return work type details" provider: envoice method: GET path: "/api/worktype/details" encoding: json input: { type: "object" properties: { workTypeId: { type: "integer" format: "int32" } "x-auth-key": { type: "string" } "x-auth-secret": { type: "string" } } required: ["workTypeId", "x-auth-key", "x-auth-secret"] additionalProperties: false } output: { type: "object" properties: { CreatedOn: { type: "string" format: "date-time" description: "Date of creation" } Id: { type: "integer" format: "int32" description: "Entity id" } Title: { type: "string" description: "Indicates the title of of the work type (Logo design, development...)" } } } }