action agco_ats_global_image_categories_get_files { label: "Get a paged response of file metadata." description: "No Documentation Found." provider: agco_ats method: GET path: "/api/v2/GlobalImageCategories" encoding: json input: { type: "object" properties: { limit: { type: "integer" format: "int32" } offset: { type: "integer" format: "int32" } } additionalProperties: false } output: { type: "object" properties: { Entities: { type: "array" items: { type: "object" description: "An image category from the Global Image library." required: ["Name"] properties: { Id: { type: "string" description: "The Id of the GlobalImage Categories." } Name: { type: "string" description: "The name of the globalImage Catetory." } } } } 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." } } } } } }