action agco_ats_licenses_get { label: "Gets a list of licenses with the specified criteria." description: "No Documentation Found." provider: agco_ats method: GET path: "/api/v2/Licenses" encoding: json input: { type: "object" properties: { DealerCode: { type: "string" } Status: { type: "string" enum: ["Active", "Inactive", "All"] } VoucherCode: { 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: { Active: { type: "boolean" description: "True if license is active." } CreatedDate: { type: "string" format: "date-time" description: "The date the license was created." } DeactivatedDate: { type: "string" format: "date-time" description: "The date the license was deactivated." } LicenseActivationType: { type: "string" description: "The type of license (e.g. EDT, EDT Lite)" enum: ["EDT", "EDTLite"] } LicenseID: { type: "string" description: "The LicenseID" } LicenseVersion: { type: "string" description: "The version of the license." } RefreshDate: { type: "string" format: "date-time" description: "The date the license was refreshed." } SystemInfo: { type: "string" description: "Information about the system which is licensed." } UpdatedLicenseVersion: { type: "string" description: "The updated version of the license. A value in this field indicates that the update has not been confirmed." } VoucherCode: { type: "string" description: "The voucher code that generated the license." } } } } 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." } } } } } }