- eBay fulfillment openAPI
- OAuth
- SKU
- Stock
- Inbound
- Outbound
- Warehouse
- Pricing
Inbound Order Detail Query
Sandbox
Sandbox
POST
/3pp/inbound/v1/detail
Inbound
Request
Header Params
clientKey
string
required
vAuthorization
string
required
Access-Token
string
required
Body Params application/json
apiVersion
string
optional
data
object (ExternalInboundOrderQueryInfoRequestDto)
optional
endTime
string <date-time>
optional
Format: date + time zone, UTC ISO8601,ex:2018-11-28T20:09:57+0800
The duration between endTime and startTime should be less than 7days.
inboundNumberList
array[string]
optional
sellerinboundNumberList
array[string]
optional
startTime
string <date-time>
optional
messageId
string
optional
timestamp
integer <int64>
optional
Example
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://openapi-stage-hk.orangeconnex.com/openapi/3pp/inbound/v1/detail' \
--header 'clientKey;' \
--header 'vAuthorization;' \
--header 'Access-Token;' \
--header 'Content-Type: application/json' \
--data-raw ''
Responses
🟢200OK
application/json
Body
code
integer <int32>
optional
data
object (Response of query inbound order detail)
optional
inboundOrderList
array[object (ExternalInboundOrderQueryDetailResponseDTO) {12}]
optional
errors
array[object (CommonVendorResponseErrorMsgDto) {3}]
optional
code
string
optional
id
string
optional
message
string
optional
message
string
optional
messageId
string
optional
success
boolean
optional
Example
{
"code": 0,
"data": {
"inboundOrderList": [
{
"asnList": [
{
"asnNumber": "string"
}
],
"batchList": [
{
"arrivalTime": 0,
"asnnumber": "string",
"inboundBatchNumber": "string"
}
],
"bookingNumber": "string",
"fileList": [
{
"failReason": "string",
"file": "string",
"fileName": "string",
"fileType": "string",
"verifyStatus": "string"
}
],
"inboundNumber": "string",
"sellerinboundNumber": "string",
"serviceRegion": "string",
"shippingMethod": "string",
"skulist": [
{
"nonStandardQuantity": 0,
"ocskuid": "string",
"putawayQuantity": 0,
"receivedQuantity": 0,
"sellerSKUID": "string",
"skuquantity": 0
}
],
"status": "string",
"trackingList": [
{
"carrier": "string",
"cartonNumber": "string",
"trackingNumber": "string"
}
],
"transportMethod": "string"
}
]
},
"errors": [
{
"code": "string",
"id": "string",
"message": "string"
}
],
"message": "string",
"messageId": "string",
"success": true
}
🟢201Created
🟠401Unauthorized
🟠403Forbidden
🟠404Not Found
Modified at 2023-10-19 08:25:59