Open-API
  1. SKU
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. SKU

SKU Label

Sandbox
https://openapi-stage-hk.orangeconnex.com/openapi
Sandbox
https://openapi-stage-hk.orangeconnex.com/openapi
POST
/3pp/sku/v1/print/skuFor3pp
If sellers want to print the SKU Label on the 3PP, they can use this API and OC will return the SKU label.

Request

Header Params

Body Params application/json

Example
{
    "apiVersion": "string",
    "data": {
        "skulist": [
            {
                "countryOfOrigin": "CN",
                "labelSize": "1",
                "language": "de-DE",
                "mfskuid": "OC000025565402228",
                "sellerSKUID": "test202506160001"
            }
        ]
    },
    "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/sku/v1/print/skuFor3pp' \
--header 'clientKey: bd1d1971-d0db-11ea-b4a1-00505694c27b' \
--header 'Access-Token: ' \
--header 'Content-Type: application/json' \
--data-raw '{
    "apiVersion": "string",
    "data": {
        "skulist": [
            {
                "countryOfOrigin": "CN",
                "labelSize": "1",
                "language": "de-DE",
                "mfskuid": "OC000025565402228",
                "sellerSKUID": "test202506160001"
            }
        ]
    },
    "messageId": "string",
    "timestamp": 0
}'

Responses

🟢200OK
application/json
Body

Examples
{
    "code": 0,
    "data": {
        "SKULabelList": [
            {
                "MFSKUID": "OC0000255654028",
                "SKUName": "test202506160001",
                "labelURL": "https://mf-seller-static-stage-cn.orangeconnex.com/attachement/sku/printlabel/2025/6/18/c8afdb61915f7116db9782fbdaf1d624.pdf",
                "needUNLabel": true,
                "sellerSKUID": "test202506160001"
            }
        ]
    },
    "errors": [],
    "success": true
}
🟢201Created
🟠401Unauthorized
🟠403Forbidden
🟠404Not Found
Modified at 2025-06-18 09:24:59
Previous
SKUQuery v3
Next
SKUSetupEFService
Built with