action agco_ats_clients_get { label: "Get a List of Clients in the Update System." description: "No Documentation Found." provider: agco_ats method: GET path: "/api/v2/Clients" encoding: json input: { type: "object" properties: { Tag: { type: "string" } limit: { type: "integer" format: "int32" } offset: { type: "integer" format: "int32" } } additionalProperties: false } output: { type: "object" description: "A response containing a page of results and metadata concerning the results" required: ["Entities", "Metadata"] properties: { Entities: { type: "array" items: { type: "object" properties: { ClientID: { type: "string" description: "Read Only. The id of the client" } LastCheckin: { type: "string" format: "date-time" description: "Read Only. The time of the client's last checkin with the server." } Tag: { type: "string" description: "A description of the client that can be used for easy reference" } } } } 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." } } } } } }