action agco_ats_reporting_get_subscriptions { label: "Get a list of current Client Subscriptions." description: "No Documentation Found." provider: agco_ats method: GET path: "/api/v2/Reporting/GetSubscriptions" encoding: json input: { type: "object" properties: { ClientID: { type: "string" } UpdateGroupID: { 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" required: ["UpdateGroupID", "ClientID"] properties: { Active: { type: "boolean" description: "The subscription status. The status is active by default." } ClientID: { type: "string" description: "Read Only after creation. The client id of the subscriber." } LastCheckin: { type: "string" format: "date-time" description: "ReadOnly. The timestamp of the last checkin." } RelationshipID: { type: "string" description: "Read Only after creation. The relationship id. A relationship id will be assigned if not provided on creation." } UpdateGroupID: { type: "string" description: "Read Only after creation. The update group to subscribe to." } } } } 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." } } } } } }