action agco_ats_authorization_categories_get { label: "Get authorization categories." description: "No Documentation Found." provider: agco_ats method: GET path: "/api/v2/AuthorizationCategories" encoding: json input: { type: "object" properties: { definitionID: { type: "string" } limit: { type: "integer" format: "int32" } offset: { type: "integer" format: "int32" } userID: { type: "integer" format: "int32" } } additionalProperties: false } output: { type: "object" properties: { Entities: { type: "array" items: { type: "object" description: "A category for Authorization Code Definitions" properties: { Description: { type: "string" description: "A description of the Category." } ID: { type: "string" description: "The ID of the Category." } Name: { type: "string" description: "The Name of the Category." } } } } Metadata: { type: "object" description: "Metadata for the paged response" required: ["Limit", "Offset", "TotalCount"] properties: { Limit: { type: "integer" format: "int32" description: "The number of entities this paged response is limited to." } Offset: { type: "integer" format: "int32" description: "The number of entities prior to this page of items." } TotalCount: { type: "integer" format: "int32" description: "The total number of entities matching the request." } } } } } }