We are trying to retrieve the status of a merchant account like so: ``` Config conf = new PayConfig() .withAccessKey(AMAZONPAYACCESSKEY) .withSecretKey(AMAZONPAYSECRETKEY) .withCurrencyCode(CurrencyCode.USD) .withSandboxMode(false) .withRegion(Region.US); Client client = new PayClient(conf); final GetMerchantAccountStatusRequest request = new GetMerchantAccountStatusRequest(); request.setSellerId("XXXX"); request.setMWSAuthToken("XXXXXXX"); final GetMerchantAccountStatusResponseData resp = client.getMerchantAccountStatus(request); ``` Please let us know how to resolve this.
We are trying to retrieve the status of a merchant account like so:
Please let us know how to resolve this.