Open-API
  1. Inbound
Open-API
  • eBay fulfillment openAPI
  • OAuth
    • URL(getAuthorizationCode)
      GET
    • AccessToken
      POST
    • Refresh AccessToken
      POST
  • SKU
    • SKUCreation v3
      POST
    • SKUQuery v3
      POST
    • SKU Label
      POST
    • SKUSetupEFService
      POST
    • QuerySKUEFService
      POST
  • Stock
    • GetStockMovement
      POST
    • StockSnapshot v2
      POST
  • Inbound
    • PlaceInboundOrder
      POST
    • Inbound Order List Query
      POST
    • Inbound Order Detail Query
      POST
    • Inbound Label Query
      POST
    • Upload TrackingNo
      POST
    • Upload Clearance Doc
      POST
  • Outbound
    • Place Outbound Order
      POST
    • Outbound Order Query v2
      POST
    • Outbound Order Cancellation
      POST
  • Warehouse
    • GetServiceList
      GET
  • Pricing
    • Cost Estimation Request
      POST
    • Cost Estimation Response
      POST
  1. Inbound

PlaceInboundOrder

Sandbox
https://openapi-stage-hk.orangeconnex.com/openapi
Sandbox
https://openapi-stage-hk.orangeconnex.com/openapi
POST
/3pp/inbound/v1/creation
When seller going to ship products into warehouse. They needs to place a inbound order from ERP first.

Request

Header Params

Body Params application/json

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 Code 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

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
Previous
StockSnapshot v2
Next
Inbound Order List Query
Built with