action agco_ats_clients_get_subscriptions { label: "Get a Client's Current Update Group Subscriptions" description: "No Documentation Found." provider: agco_ats method: GET path: "/api/v2/Clients/{ID}/UpdateGroupSubscriptions" encoding: json input: { type: "object" properties: { ID: { type: "string" } UpdateGroupID: { type: "string" } limit: { type: "integer" format: "int32" } offset: { type: "integer" format: "int32" } } required: ["ID"] 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", "PackageTypeID", "ClientID", "Include"] properties: { ClientID: { type: "string" description: "The ClientID." } Include: { type: "boolean" description: "True to receive content of type indicated by PackageTypeID." } PackageTypeID: { type: "string" description: "The PackageType to set subscription status for" } UpdateGroupID: { type: "string" description: "The Update Group this subscription is relevant for." } UpdateGroupSubscriptionID: { type: "integer" format: "int32" description: "The Update Group Subscription ID. This ID will be automatically assigned when creating an Update Group Subscription." } } } } 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." } } } } } }