- eBay fulfillment openAPI
- OAuth
- SKU
- Stock
- Inbound
- Outbound
- Warehouse
- Pricing
PlaceInboundOrder
Sandbox
https://openapi-stage-hk.orangeconnex.com/openapi
Sandbox
https://openapi-stage-hk.orangeconnex.com/openapi
POST
/3pp/inbound/v1/creation
Inbound
Request
Header Params
clientKey
string
required
Example:
bd1d1971-d0db-11ea-b4a1-00505694c27b
vAuthorization
string
required
Access-Token
string
required
Example:
{{Access-Token}}
Body Params application/json
apiVersion
string
optional
data
object (Inbound order list)
optional
cartonList
array[object (ExternalInboundOrderCartonDto) {5}]
required
eta
string
required
sellerInboundNumber
string
required
serviceRegion
string
required
shippingFrom
string
required
for example: CN,DE
shippingMethod
string
required
TK-Truck
EX-Express
transportMethod
string
optional
OF = Ocean Freight
AF = Air Freight
RF = Rail Freight
TK = Truck
vat
string
optional
messageId
string
optional
timestamp
integer <int64>
optional
Example
{
"messageId": "11111111111EGWG",
"timeStamp": 123123213123,
"data": {
"sellerInboundNumber": "2203123123123030043",
"serviceRegion": "DE",
"shippingFrom": "DE",
"shippingMethod": "TK",
"transportMethod": "TK",
"ETA": "2025-12-27+0800",
"VAT": "",
"cartonList": [
{
"sellerCartonNumber": "C001",
"productList": [
{
"MFSKUID": "OC0000255606056",
"quantity": "10"
},
{
"MFSKUID": "OC0000255604014",
"quantity": "10"
}
]
}
]
}
}
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/creation' \
--header 'clientKey: bd1d1971-d0db-11ea-b4a1-00505694c27b' \
--header 'Access-Token: ' \
--header 'Content-Type: application/json' \
--data-raw '{
"messageId": "11111111111EGWG",
"timeStamp": 123123213123,
"data": {
"sellerInboundNumber": "2203123123123030043",
"serviceRegion": "DE",
"shippingFrom": "DE",
"shippingMethod": "TK",
"transportMethod": "TK",
"ETA": "2025-12-27+0800",
"VAT": "",
"cartonList": [
{
"sellerCartonNumber": "C001",
"productList": [
{
"MFSKUID": "OC0000255606056",
"quantity": "10"
},
{
"MFSKUID": "OC0000255604014",
"quantity": "10"
}
]
}
]
}
}'
Responses
🟢200OK
application/json
Body
code
integer <int32>
optional
data
array[object (Response of create inbound order) {12}]
optional
address
string
required
asn
boolean
required
Example:
false
bookingNumber
string
optional
cartonList
array[object (Carton number and label url of inbound order) {2}]
optional
clearanceDocList
array[object (Clearance document type) {1}]
optional
contactsMail
string
required
contactsName
string
required
contactsPhone
string
required
inboundOrderNumber
string
required
needClearanceDoc
boolean
required
Example:
false
packingListUrl
string
required
warehouseArea
string
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
Examples
{
"code": 3,
"data": [],
"errors": [
{
"code": "3A0106",
"id": "2203123123123030043",
"message": "MFSKUID OC0000251088010,OC0000255180028 不存在"
}
],
"messageId": "11111111111EGWG",
"success": false
}
🟢201Created
🟠401Unauthorized
🟠403Forbidden
🟠404Not Found
Modified at 2025-06-18 10:39:16