action envoice_get_api_invoice_allcategories { label: "Return all invoice categories for the account" provider: envoice method: GET path: "/api/invoice/allcategories" encoding: json input: { type: "object" properties: { query: { type: "string" } "x-auth-key": { type: "string" } "x-auth-secret": { type: "string" } } required: ["x-auth-key", "x-auth-secret"] additionalProperties: false } output: { type: "object" properties: { Count: { type: "integer" format: "int32" } ErrorMessages: { type: "array" items: { type: "object" properties: { Code: { type: "string" } FaultMessage: { type: "string" } Group: { type: "string" } UserVisibleMessage: { type: "string" } } } } IsFaulted: { type: "boolean" } Result: { type: "array" items: { type: "object" properties: { Id: { type: "integer" format: "int32" description: "Entity id" } Name: { type: "string" description: "Category name" } } } } TotalCount: { type: "integer" format: "int32" } } } }