调用bulk_migrate_listing的ebay api然后错误2003

Sus*_*Cai 8 ebay-api

我试图调用https://api.ebay.com/sell/inventory/v1/bulk_migrate_listing,然后响应代码是 2003

我的要求是:

{
    "requests": [
        {
            "listingId": "160009220563"
        }
    ]
}
Run Code Online (Sandbox Code Playgroud)

像这样的响应体:

{
    "errors": [
        {
            "errorId": 2003,
            "domain": "ACCESS",
            "category": "APPLICATION",
            "message": "Internal error",
            "longMessage": "There was a problem with an eBay internal system or process. Contact eBay developer support for assistance",
            "parameters": [
                {
                    "name": "reason",
                    "value": "Failed to transform underlying error response, see logs."
                }
            ]
        }
    ]
}
Run Code Online (Sandbox Code Playgroud)