action agco_ats_files_get_file { label: "Gets a file's metadata." description: "No Documentation Found." provider: agco_ats method: GET path: "/api/v2/Files/{ID}" encoding: json input: { type: "object" properties: { ID: { type: "string" } } required: ["ID"] additionalProperties: false } output: { type: "object" description: "A language used for string translations." required: ["CRC", "ContentType", "Description", "IsPublic", "Name", "Path", "State"] properties: { CRC: { type: "string" description: "The crc of the file (SHA256, HEX-encoded). Must be provided when creating a file." } ContentType: { type: "string" description: "The type of file; sent as the content-type header." } Description: { type: "string" description: "The description of the file." } Id: { type: "string" description: "The Id of the file." } IsPublic: { type: "boolean" description: "Indicates whether this file is available to the public for download." } Name: { type: "string" description: "The name of the file when downloaded." } Path: { type: "string" description: "The Path 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." enum: ["Created", "Available", "Removed"] } } } }