我正在尝试检索未完成订单的地址,但无论出于何种原因,自昨天以来,它们刚刚停止出现在响应 JSON 中。访问令牌是新鲜的。其他所有内容都接受地址。对于任何订单。
这是我正在使用的生产 GET 请求 URL。
https://api.ebay.com/sell/fulfillment/v1/order?filter=orderfulfillmentstatus:%7BNOT_STARTED%7CIN_PROGRESS%7D
昨天我越来越...
"fulfillmentStartInstructions": [
{
"fulfillmentInstructionsType": "SHIP_TO",
"minEstimatedDeliveryDate": "2020-05-12T23:00:00.000Z",
"maxEstimatedDeliveryDate": "2020-05-21T23:00:00.000Z",
"ebaySupportedFulfillment": false,
"shippingStep": {
"shipTo": {
"fullName": "####",
"contactAddress": {
"addressLine1": "####",
"addressLine2": "####",
"city": "####",
"stateOrProvince": "####",
"postalCode": "####",
"countryCode": "####"
},
"primaryPhone": {},
"email": "####"
},
"shippingServiceCode": "UK_StandardShippingFromOutside"
}
}
]
还有今天...
"fulfillmentStartInstructions": [
{
"fulfillmentInstructionsType": "SHIP_TO",
"ebaySupportedFulfillment": false
}
]
失踪。知道为什么会发生这种情况吗?