action agco_ats_license_activations_post { label: "Create a license activation." description: "No Documentation Found." provider: agco_ats method: POST path: "/api/v2/LicenseActivations" encoding: form input: { type: "object" required: ["DealerCode", "PostalCode", "SystemInfo", "VoucherCode"] properties: { DealerCode: { type: "string" description: "The Dealer Code of the dealer activating the license" } LicenseActivationType: { type: "string" description: "The type of license to create (e.g. EDT, EDT Lite)" enum: ["EDT", "EDTLite"] } PostalCode: { type: "string" description: "The dealer's postal code (zip code)" } SystemInfo: { type: "string" description: "Information about the system being activated" } VoucherCode: { type: "string" description: "The Voucher Code to use for activation" } } } output: { type: "object" properties: { Key: { type: "string" description: "The license key in base64 format. This is only provided when the LicenseData is a new license." } LicenseData: { type: "string" description: "The license data in base64 format." } } } }