1. Outbound
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
    • GetStockAge
      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
    • placeThirdPartyLabelOrder
      POST
  • Warehouse
    • GetServiceList
      GET
  • Pricing
    • Cost Estimation Request
    • Cost Estimation Response
  • VAS
    • placeVasOrder
    • queryVasOrderDetail
    • cancelVasOrder
  • Webhook
    • Outbound Callback Webhook Reception
  • return
    • Return 2.0 退货订单开放接口
      • 查询退货订单
      • 获取面单
      • 取消 RMA 订单或同步更新退货跟踪信息
      • 查询退货库存快照
      • 关联退件库存商品
      • Erp提交订单
    • Auth
      • 获取AccessToken
    • 财务明细接口
      • 费用明细查询
  1. Outbound

placeThirdPartyLabelOrder

Sandbox
https://openapi-stage-hk.orangeconnex.com/openapi
Sandbox
https://openapi-stage-hk.orangeconnex.com/openapi
POST
/3pp/ocw/v1/creation

Request

Header Params

Body Params application/json

Example
{
    "timestamp": 0,
    "messageId": "string",
    "apiVersion": "string",
    "data": [
        {
            "referenceNumber": "string",
            "orderPlatform": "string",
            "serviceCountry": "string",
            "serviceRegion": "string",
            "shippingServiceCode": "string",
            "companyName": "string",
            "consigneeName": "string",
            "houseNumber": "string",
            "consigneeAddress1": "string",
            "consigneeAddress2": "string",
            "consigneeCity": "string",
            "consigneeProvinceOrState": "string",
            "consigneeCountryCode": "string",
            "consigneeZipCode": "string",
            "consigneePhone": "string",
            "consigneeEmail": "string",
            "taxId": "string",
            "remarks": "string",
            "ebayOrderId": "string",
            "platformOrderId": "string",
            "productList": [
                {
                    "MFSKUID": "string",
                    "SKUQuantity": 0,
                    "eBayTransactionID": "string",
                    "eBayItemID": "string",
                    "SN": "string",
                    "declaredValue": 0,
                    "currency": "string"
                }
            ],
            "fileGroupID": "string",
            "ebayId": "string",
            "vasCode": "string",
            "reShipmentEbayOrder": false,
            "ocwOrder": true,
            "lastMileVendor": "string",
            "lastMileService": "string",
            "trackingNumber": "string",
            "shippingLabel": "string",
            "orderType": "string"
        }
    ]
}

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 'https://openapi-stage-hk.orangeconnex.com/openapi/3pp/ocw/v1/creation' \
--header 'vendorCode;' \
--header 'Content-Type: application/json' \
--data '{
    "timestamp": 0,
    "messageId": "string",
    "apiVersion": "string",
    "data": [
        {
            "referenceNumber": "string",
            "orderPlatform": "string",
            "serviceCountry": "string",
            "serviceRegion": "string",
            "shippingServiceCode": "string",
            "companyName": "string",
            "consigneeName": "string",
            "houseNumber": "string",
            "consigneeAddress1": "string",
            "consigneeAddress2": "string",
            "consigneeCity": "string",
            "consigneeProvinceOrState": "string",
            "consigneeCountryCode": "string",
            "consigneeZipCode": "string",
            "consigneePhone": "string",
            "consigneeEmail": "string",
            "taxId": "string",
            "remarks": "string",
            "ebayOrderId": "string",
            "platformOrderId": "string",
            "productList": [
                {
                    "MFSKUID": "string",
                    "SKUQuantity": 0,
                    "eBayTransactionID": "string",
                    "eBayItemID": "string",
                    "SN": "string",
                    "declaredValue": 0,
                    "currency": "string"
                }
            ],
            "fileGroupID": "string",
            "ebayId": "string",
            "vasCode": "string",
            "reShipmentEbayOrder": false,
            "ocwOrder": true,
            "lastMileVendor": "string",
            "lastMileService": "string",
            "trackingNumber": "string",
            "shippingLabel": "string",
            "orderType": "string"
        }
    ]
}'

Responses

🟢200
application/json
Bodyapplication/json

Example
{
    "success": true,
    "code": 0,
    "messageId": "string",
    "message": "string",
    "data": [
        {
            "referenceNumber": "string",
            "orderNumber": "string",
            "packageNumber": "string"
        }
    ],
    "errors": [
        {
            "id": "string",
            "code": "string",
            "message": "string",
            "referenceNumber": "string"
        }
    ]
}
Modified at 2026-06-18 09:19:39
Previous
Outbound Order Cancellation
Next
GetServiceList
Built with