Hello,
We've run into an issue where we're getting an error response from the Custom Cart endpoint that does not match the error format described
here.
When attempting to POST a customer cart to a merchant that does not exist, we receive this response:
{
"code": "no_rest",
"user_msg": "Merchant not found.",
"dev_msg": "Merchant not found."
}
(It should also be noted that this response had a status code of 200, which I believe is in error.)
{
"message": [
{
"code": "no_rest",
"user_msg": "Merchant not found.",
"dev_msg": "Merchant not found."
}
]
}
With a status code of 400 to denote a bad user request.
- Chris Lucas