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

QuerySKUEFService

Sandbox
https://openapi-stage-hk.orangeconnex.com/openapi
Sandbox
https://openapi-stage-hk.orangeconnex.com/openapi
POST
/3pp/sku/v1/querySKUEFService
SKU
This API is used to get the EF services available for SKU.

Request

Header Params
clientKey
string 
required
clientKey
vAuthorization
string 
required
vAuthorization
Access-Token
string 
required
Access-Token
Body Params application/json
apiVersion
string 
optional
data
object (3PP Query SKU EF Service) 
optional
mfSkuList
array[object (EF3ppMFSkuRequest) {2}] 
required
MFSKUList
messageId
string 
optional
timestamp
integer <int64>
optional
Example
{
    "apiVersion": "string",
    "data": {
        "mfSkuList": [
            {
                "ebayId": "string",
                "skuId": "string"
            }
        ]
    },
    "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/querySKUEFService' \
--header 'clientKey;' \
--header 'vAuthorization;' \
--header 'Access-Token;' \
--header 'Content-Type: application/json' \
--data-raw '{
    "apiVersion": "string",
    "data": {
        "mfSkuList": [
            {
                "ebayId": "string",
                "skuId": "string"
            }
        ]
    },
    "messageId": "string",
    "timestamp": 0
}'

Responses

🟢200OK
application/json
Body
code
integer <int32>
optional
data
array [object {1}] 
optional
mfSkuList
array [object {2}] 
required
MFSKUList
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": [
        {
            "mfSkuList": [
                {
                    "fulfillmentCenterList": [
                        {
                            "domesticServicesList": [
                                {
                                    "shippingServiceCode": "string",
                                    "shippingServiceRegionList": [
                                        {
                                            "additionalQuantityValue": 0,
                                            "currency": "string",
                                            "shippingCost": 0,
                                            "shippingServiceRegion": "string"
                                        }
                                    ]
                                }
                            ],
                            "ebayIDList": [
                                {
                                    "Autoflip": 0,
                                    "DefaultInventory": 0,
                                    "customLabel": "string",
                                    "ebayID": "string",
                                    "failedReason": "string",
                                    "status": 0
                                }
                            ],
                            "fulfillmentCenterCode": "string",
                            "internationalServices": {
                                "countryList": [
                                    {
                                        "additionalQuantityValue": 0,
                                        "currency": "string",
                                        "destinationCountry": "string",
                                        "shippingCost": 0
                                    }
                                ],
                                "internationalShippingServiceCode": "string"
                            }
                        }
                    ],
                    "mfSkuId": "string"
                }
            ]
        }
    ],
    "errors": [
        {
            "code": "string",
            "id": "string",
            "message": "string"
        }
    ],
    "message": "string",
    "messageId": "string",
    "success": true
}
🟢201Created
🟠401Unauthorized
🟠403Forbidden
🟠404Not Found
Previous
SKUSetupEFService
Next
GetStockMovement
Built with