action agco_ats_aftermarket_services_get_user_status { label: "Retrieve the status of an EDT Kit Registration with AGCO Power Web Services" description: "No Documentation Found." provider: agco_ats method: GET path: "/api/v2/AftermarketServices/UserStatuses" encoding: json input: { type: "object" properties: { dealerCode: { type: "string" } voucherCode: { type: "string" } } required: ["dealerCode", "voucherCode"] additionalProperties: false } output: { type: "object" description: "Status of a voucher in the AGCO Power system" required: ["DealerCode", "VoucherCode"] properties: { DealerCode: { type: "string" description: "The dealer code of the voucher" } State: { type: "string" description: "The state of the voucher" enum: ["Active", "Inactive", "None"] } VoucherCode: { type: "string" description: "The voucher code" } } } }