1. Pricing
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
  • Pricing
    • GetServiceList
      GET
    • Cost Estimation
      POST
    • Cost Estimation Request
      POST
    • Cost Estimation Response
      POST
  • VAS
    • placeVasOrder
    • queryVasOrderDetail
    • cancelVasOrder
  • Return
    • Create RMA
    • Get Return Label
    • Cancel RMA
    • Return Order Query
    • Return Stock Snapshot
    • Return Association
  • Transaction
    • transactionDetailsQuery
    • transactionQuery
  • Webhook
    • Outbound Callback Webhook Reception
  1. Pricing

GetServiceList

Sandbox
https://openapi-stage-hk.orangeconnex.com/openapi
Sandbox
https://openapi-stage-hk.orangeconnex.com/openapi
GET
/3pp/base/v1/service
3PP could get OC's foundational service data through this API.
When 3PP place non-MF orders to OC, they need to tell OC from which warehouse the outbound order should be shipped and by which shipping service they want the outbound order to be fulfilled.
In this scenario, 3PP need to get OC's service list by this API

Request

Header Params

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/base/v1/service' \
--header 'clientKey: bd1d1971-d0db-11ea-b4a1-00505694c27b' \
--header 'Access-Token: '

Responses

🟢200OK
application/json
Bodyapplication/json

Examples
{
    "code": 0,
    "data": [
        {
            "productList": [
                {
                    "shippingServiceCode": "DEDomesticStandard",
                    "shippingServiceNameList": [
                        {
                            "applyPlatform": "0,1",
                            "language": "en-US",
                            "shippingServiceName": "DE Domestic Standard"
                        },
                        {
                            "applyPlatform": "0,1",
                            "language": "de-DE",
                            "shippingServiceName": "DE Inland Standardversand"
                        },
                        {
                            "applyPlatform": "0,1",
                            "language": "zh-CN",
                            "shippingServiceName": "德国国内标准配送"
                        },
                        {
                            "applyPlatform": "0,1",
                            "language": "en-US",
                            "shippingServiceName": "DE Domestic Standard"
                        },
                        {
                            "applyPlatform": "0,1",
                            "language": "de-DE",
                            "shippingServiceName": "DE Inland Standardversand"
                        },
                        {
                            "applyPlatform": "0,1",
                            "language": "it-IT",
                            "shippingServiceName": "DE Domestic Standard"
                        }
                    ]
                },
                {
                    "shippingServiceCode": "DEInternationalStandard",
                    "shippingServiceNameList": [
                        {
                            "applyPlatform": "0,1",
                            "language": "en-US",
                            "shippingServiceName": "DE International Standard"
                        },
                        {
                            "applyPlatform": "0,1",
                            "language": "zh-CN",
                            "shippingServiceName": "德国国际标准配送"
                        },
                        {
                            "applyPlatform": "0,1",
                            "language": "de-DE",
                            "shippingServiceName": "DE International Standardversand"
                        },
                        {
                            "applyPlatform": "0,1",
                            "language": "it-IT",
                            "shippingServiceName": "DE International Standard"
                        }
                    ]
                },
                {
                    "shippingServiceCode": "DEDomesticEconomy",
                    "shippingServiceNameList": [
                        {
                            "applyPlatform": "0,1",
                            "language": "zh-CN",
                            "shippingServiceName": "德国国内经济配送"
                        },
                        {
                            "applyPlatform": "0,1",
                            "language": "en-US",
                            "shippingServiceName": "DE Economy"
                        },
                        {
                            "applyPlatform": "0,1",
                            "language": "it-IT",
                            "shippingServiceName": "DE Economy"
                        },
                        {
                            "applyPlatform": "0,1",
                            "language": "zh-CN",
                            "shippingServiceName": "德国国内经济配送"
                        },
                        {
                            "applyPlatform": "0,1",
                            "language": "de-DE",
                            "shippingServiceName": "DE Inland Economy"
                        },
                        {
                            "applyPlatform": "0,1",
                            "language": "en-US",
                            "shippingServiceName": "DE Domestic Economy"
                        },
                        {
                            "applyPlatform": "0,1",
                            "language": "it-IT",
                            "shippingServiceName": "DE Domestic Economy"
                        }
                    ]
                },
                {
                    "shippingServiceCode": "DEDomesticFreight",
                    "shippingServiceNameList": [
                        {
                            "applyPlatform": "0,1",
                            "language": "zh-CN",
                            "shippingServiceName": "德国国内大件配送"
                        },
                        {
                            "applyPlatform": "0,1",
                            "langua
🟠401Unauthorized
🟠403Forbidden
🟠404Not Found
Modified at 2026-07-08 12:50:26
Previous
placeThirdPartyLabelOrder
Next
Cost Estimation
Built with