action envoice_work_type_api_search { label: "Return all work types for the account that match the query param" provider: envoice method: GET path: "/api/worktype/search" encoding: json input: { type: "object" properties: { "queryOptions.order": { type: "string" enum: ["None", "Asc", "Desc"] } "queryOptions.orderBy": { type: "string" } "queryOptions.page": { type: "integer" format: "int32" } "queryOptions.pageSize": { type: "integer" format: "int32" } "queryOptions.query": { type: "string" } "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" } Title: { type: "string" description: "Indicates the title of of the work type (Logo design, development...)" } } } } }