action agco_ats_global_images_get_global_image { label: "Gets a GlobalImage's metadata." description: "No Documentation Found." provider: agco_ats method: GET path: "/api/v2/GlobalImages/{ID}" encoding: json input: { type: "object" properties: { ID: { type: "string" } } required: ["ID"] additionalProperties: false } output: { type: "object" description: "An image from the Global Image library." required: ["CRC", "Description", "Height", "Name", "State", "ThumbnailCRC", "Width"] properties: { CRC: { type: "string" description: "The Hash of the file (SHA256, HEX-encoded)." } Categories: { type: "array" description: "The category of the file." 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." } } } } Date: { type: "string" format: "date-time" description: "The date of the file." } Description: { type: "string" description: "The description of the file." } Height: { type: "integer" format: "int32" description: "The height of the file." } Id: { type: "string" description: "The Id of the GlobalImage Metadata." } Name: { type: "string" description: "The name of the file when downloaded." } Publisher: { type: "string" description: "The Publisher of the file." } Size: { type: "integer" format: "int64" description: "The size of the file in bytes. Null until assigned by server when marked as 'Available'. Read Only" } State: { type: "string" description: "Indicates the state of this file. Must be 'Created' when created. Read Only." enum: ["Created", "Available", "Removed"] } ThumbnailCRC: { type: "string" description: "The Hash of the thumbnail file (SHA256, HEX-encoded)." } ThumbnailSize: { type: "integer" format: "int64" description: "The size of the thumbnail file in bytes. Null until assigned by server when marked as 'Available'. Read Only" } Width: { type: "integer" format: "int32" description: "The width of the file." } } } }