action agco_ats_global_image_categories_get_file { label: "Gets a file's metadata." description: "No Documentation Found." provider: agco_ats method: GET path: "/api/v2/GlobalImageCategories/{ID}" encoding: json input: { type: "object" properties: { ID: { type: "string" } } required: ["ID"] additionalProperties: false } output: { 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." } } } }