- eBay fulfillment openAPI
- OAuth
- SKU
- Stock
- Inbound
- Outbound
- Warehouse
- Pricing
PlaceInboundOrder
Sandbox
Sandbox
POST
/3pp/inbound/v1/creation
Inbound
Request
Header Params
clientKey
string
required
vAuthorization
string
required
Access-Token
string
required
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
{
"apiVersion": "string",
"data": {
"cartonList": [
{
"cartonNumber": "string",
"cartonOriginCountry": "st",
"labelSize": "string",
"productList": [
{
"mfskuid": "string",
"quantity": 0
}
],
"sellerCartonNumber": "string"
}
],
"eta": "string",
"sellerInboundNumber": "string",
"serviceRegion": "string",
"shippingFrom": "string",
"shippingMethod": "string",
"transportMethod": "string",
"vat": "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/creation' \
--header 'clientKey;' \
--header 'vAuthorization;' \
--header 'Access-Token;' \
--header 'Content-Type: application/json' \
--data-raw '{
"apiVersion": "string",
"data": {
"cartonList": [
{
"cartonNumber": "string",
"cartonOriginCountry": "st",
"labelSize": "string",
"productList": [
{
"mfskuid": "string",
"quantity": 0
}
],
"sellerCartonNumber": "string"
}
],
"eta": "string",
"sellerInboundNumber": "string",
"serviceRegion": "string",
"shippingFrom": "string",
"shippingMethod": "string",
"transportMethod": "string",
"vat": "string"
},
"messageId": "string",
"timestamp": 0
}'
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
Example
{
"code": 0,
"data": [
{
"address": "string",
"asn": false,
"bookingNumber": "string",
"cartonList": [
{
"cartonNumber": "string",
"labelUrl": "string"
}
],
"clearanceDocList": [
{
"fileType": "string"
}
],
"contactsMail": "string",
"contactsName": "string",
"contactsPhone": "string",
"inboundOrderNumber": "string",
"needClearanceDoc": false,
"packingListUrl": "string",
"warehouseArea": "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