-
Notifications
You must be signed in to change notification settings - Fork 775
Description
I'm integrating with the new FBA Inbound API v2024-03-20 for a client. The end-to-end flow was working, but at some point it started failing at the confirmTransportationOptions
step with the error Fail to execute CONFIRM_CARRIERS API with errors
, and no additional details on what's going wrong. Here's the full error payload:
{
"operationStatus": "FAILED",
"operationId": "c2fbebab-xxxx-xxxx-xxxx-1818a3cba30d",
"operation": "confirmTransportationOptions",
"operationProblems": [
{
"severity": "ERROR",
"code": "BadRequest",
"message": "ERROR: Fail to execute CONFIRM_CARRIERS API with errors."
}
]
}
Per @johnkw's comment on #4184 that says these calls fail randomly some percentage of the time with the exact same inputs, I tried automatically retrying the call up to 20 times in a row with the same inputs, but got the same exact error every time. Again, this exact code with the exact values I'm using was working at one point, but now I'm getting this error. This behavior seems to be consistent with what others are seeing from the new FBA Inbound API.
I've had an open support case on Seller Central related to this issue for going on 2 weeks with no real responses beyond "we'll get back to you."
At one point, I was getting the ERROR: Something went wrong. Please try again later.
error as well, but that seems to have vanished and has been replaced with the Fail to execute CONFIRM_CARRIERS API with errors
issue.
If anyone has any insight into how to get past this problem, that would be much appreciated.