action agco_ats_reporting_update_metrics { label: "Get data for pie charts in UpdateMetrics." description: "No Documentation Found." provider: agco_ats method: GET path: "/api/v2/Reporting/UpdateMetrics" encoding: json input: { type: "object" properties: { UpdateGroupID: { type: "string" } bundleNumber: { type: "integer" format: "int32" } } required: ["UpdateGroupID"] additionalProperties: false } output: { type: "object" description: "Model that retrieves the data for UpdateMetrics" properties: { ActiveVersion: { type: "string" description: "Active version (bundle number) of update type." } ActiveVersionByClient: { type: "array" description: "Generic collection that is of type ActiveVersionByClientRecord" items: { type: "object" properties: { BundleNumber: { type: "integer" format: "int32" } ClientCount: { type: "integer" format: "int32" } ReleaseName: { type: "string" } } } } CurrentStateByClient: { type: "array" description: "Generic collection that is of type CurrentStateByClientRecord" items: { type: "object" properties: { ClientCount: { type: "integer" format: "int32" } State: { type: "string" } } } } CutOffDate: { type: "string" format: "date-time" description: "Date that has been configured to only show the most recent clients with a cut off date. (Ex. year from current date)" } DataRefreshed: { type: "string" format: "date-time" description: "Data was refreshed at this time." } FilteredClientCount: { type: "integer" format: "int32" description: "Sum of clients represented \n Filtered by updateType and lastCheckedInDate" } PackageErrors: { type: "array" description: "Generic collection that is of type PackageErrorsRecord" items: { type: "object" properties: { ClientCount: { type: "integer" format: "int32" } ErrorCode: { type: "string" } LongDescription: { type: "string" } ShortDescription: { type: "string" } } } } TotalClientCount: { type: "integer" format: "int32" description: "Total clients we have ever serviced" } } } }