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

查询退货库存快照

Sandbox
https://openapi-stage-hk.orangeconnex.com/openapi
Sandbox
https://openapi-stage-hk.orangeconnex.com/openapi
POST
/3pp/returns/v1/query/stock

Request

Header Params

Body Params application/json

Example
{
  "messageId": "{{messageId}}",
  "data": {
    "serviceType": "SKU",
    "uniqueIdList": ["DE01UC","DE01UC001","DE01UC002","DE01UC003","DE01UC004","asdfg12345"],
    "pageNumber": 1,
    "pageSize": 20
  }
}

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/returns/v1/query/stock' \
--header 'Access-Token: ' \
--header 'Content-Type: application/json' \
--data '{
  "messageId": "{{messageId}}",
  "data": {
    "serviceType": "SKU",
    "uniqueIdList": ["DE01UC","DE01UC001","DE01UC002","DE01UC003","DE01UC004","asdfg12345"],
    "pageNumber": 1,
    "pageSize": 20
  }
}'

Responses

🟢200
application/json
Bodyapplication/json

Example
{
    "requestId": "string",
    "success": true,
    "hasBusinessException": true,
    "errorCode": "string",
    "errorMsg": "string",
    "message": "string",
    "result": {
        "pageNumber": 0,
        "pageSize": 0,
        "hasNextPage": true,
        "totalPage": 0,
        "serviceType": "string",
        "inventoryList": [
            {
                "uniqueId": "string",
                "mfSkuId": "string",
                "warehouseCode": "string",
                "available": 0,
                "reservedAllocated": 0,
                "reservedHold": 0,
                "reservedVAS": 0,
                "unfulfillable": 0,
                "suspend": 0,
                "length": 0,
                "width": 0,
                "height": 0,
                "lengthUnit": "string",
                "weight": 0,
                "weightUnit": "string",
                "putAwayTime": "string"
            }
        ],
        "requestCount": 0,
        "successCount": 0,
        "failedCount": 0,
        "failedList": [
            "string"
        ]
    },
    "isFallback": true
}
Modified at 2026-06-17 01:58:37
Previous
取消 RMA 订单或同步更新退货跟踪信息
Next
关联退件库存商品
Built with