When consuming the SubMerchant creation service it always returns the following response.
{
“status”: “FAIL”,
“code”: “400101”,
“errorMessage”: “Parameter ‘merchantMcc’ not valid, was empty/null, or too long/short, or wrong format.”
}
Previously it did not send the error. I attach the request with which the service is being consumed, which is the one they provide in their API documentation
{
“merchantName”: “Individual”,
“merchantType”:1,
“merchantMcc”:“5511”,
“brandLogo”:null,
“country”: “CN,US”,
“address”:null,
“companyName”:null,
“registrationNumber”:null,
“registrationCountry”:null,
“registrationAddress”:null,
“incorporationDate”:null,
“storeType”:null,
“siteType”:null,
“siteUrl”:null,
“siteName”:null,
“certificateType”:1,
“certificateCountry”: “US”,
“certificateNumber”:“123456X”,
“certificateValidDate”:1752422400000,
“contractTimeIsv”:1594656000000
}
Can you help me to verify why the sunMerchant creation service always returns this response?