action agco_ats_get_api_v2_licenses_id { label: "Get a license." description: "No Documentation Found." provider: agco_ats method: GET path: "/api/v2/Licenses/{ID}" encoding: json input: { type: "object" properties: { ID: { type: "string" } } required: ["ID"] additionalProperties: false } output: { 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." } } } }