- eBay fulfillment openAPI
- OAuth
- SKU
- Stock
- Inbound
- Outbound
- Warehouse
- Pricing
Inbound Order List Query
Sandbox
https://openapi-stage-hk.orangeconnex.com/openapi
Sandbox
https://openapi-stage-hk.orangeconnex.com/openapi
POST
/3pp/inbound/v1/query
Inbound
Request
Header Params
clientKey
string
required
vAuthorization
string
required
Access-Token
string
required
Body Params application/json
apiVersion
string
required
data
object
required
inboundNumberList
object
optional
sellerInboundNumberList
object
optional
startTime
string
required
endTime
string
required
messageId
string
required
timestamp
integer
required
Example
{
"apiVersion": "string",
"data": {
"inboundNumberList": {
"inboundNumber": "string"
},
"sellerInboundNumberList": {
"sellerInboundNumber": "string"
},
"startTime": "string",
"endTime": "string"
},
"messageId": "string",
"timestamp": 0
}
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/query' \
--header 'clientKey;' \
--header 'vAuthorization;' \
--header 'Access-Token;' \
--header 'Content-Type: application/json' \
--data-raw '{
"apiVersion": "string",
"data": {
"inboundNumberList": {
"inboundNumber": "string"
},
"sellerInboundNumberList": {
"sellerInboundNumber": "string"
},
"startTime": "string",
"endTime": "string"
},
"messageId": "string",
"timestamp": 0
}'
Responses
🟢200OK
application/json
Body
code
integer <int32>
optional
data
array[object (Response of query inbound order) {10}]
optional
asnList
array[object (ExternalInboundOrderQueryAsnDto) {1}]
optional
batchList
array[object (Batch number and status of inbound order batch) {2}]
optional
bookingNumber
string
optional
inboundOrderNumber
string
required
putAwayQty
integer <int32>
optional
referenceNumber
string
optional
shippingMethod
string
required
skuQty
integer <int32>
optional
status
string
required
warehouseCode
string
required
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": [
{
"asnList": [
{
"asnNumber": "string"
}
],
"batchList": [
{
"batchNumber": "string",
"status": "string"
}
],
"bookingNumber": "string",
"inboundOrderNumber": "string",
"putAwayQty": 0,
"referenceNumber": "string",
"shippingMethod": "string",
"skuQty": 0,
"status": "string",
"warehouseCode": "string"
}
],
"errors": [
{
"code": "string",
"id": "string",
"message": "string"
}
],
"message": "string",
"messageId": "string",
"success": true
}
🟢201Created
🟠401Unauthorized
🟠403Forbidden
🟠404Not Found