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

GetServiceList

Sandbox
Sandbox
GET
/3pp/base/v1/service
Warehouse
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
clientKey
string 
required
clientKey
vAuthorization
string 
required
vAuthorization

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 GET 'https://openapi-stage-hk.orangeconnex.com/openapi/3pp/base/v1/service' \
--header 'clientKey;' \
--header 'vAuthorization;'

Responses

🟢200OK
application/json
Body
code
integer <int32>
optional
data
array[object (service region) {2}] 
optional
productList
array[object (OuterProductDTO) {2}] 
optional
shippingOptionList
serviceRegion
string 
required
The service region that OCH covered, value sample: DE, US-west
>= 0 characters<= 50 characters
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": [
    {
      "productList": [
        {
          "shippingServiceCode": "string",
          "shippingServiceNameList": [
            {
              "applyPlatform": "string",
              "language": "string",
              "shippingServiceName": "string"
            }
          ]
        }
      ],
      "serviceRegion": "string"
    }
  ],
  "errors": [
    {
      "code": "string",
      "id": "string",
      "message": "string"
    }
  ],
  "message": "string",
  "messageId": "string",
  "success": true
}
🟠401Unauthorized
🟠403Forbidden
🟠404Not Found
Modified at 2023-10-19 08:25:59
Previous
Outbound Order Cancellation
Next
Cost Estimation Request
Built with