action agco_ats_update_system_get_cached_files { label: "Get a list of Cached Files installed on the client Machine." description: "No Documentation Found." provider: agco_ats method: GET path: "/api/v2/Clients/{ClientID}/CachedFiles" encoding: json input: { type: "object" properties: { ClientID: { type: "string" } Expired: { type: "boolean" } } required: ["ClientID", "Expired"] additionalProperties: false } output: { type: "array" items: { type: "string" } } }