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
GET
/3pp/returns/v1/query/orders

Request

Query Params

Header Params

Body Params multipart/form-data

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 --globoff 'https://openapi-stage-hk.orangeconnex.com/openapi/3pp/returns/v1/query/orders?pageNumber=1&pageSize=10&serviceType=SKU&createStartTime=2025-09-01T00%3A00%3A00%2B0800&createEndTime=2025-09-26T23%3A59%3A59%2B0800&messageId={{messageId}}' \
--header 'Access-Token: '

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",
        "orderList": [
            {
                "orderNumber": "string",
                "orderType": "string",
                "serviceType": "string",
                "referenceNumber": "string",
                "warehouseCode": "string",
                "outboundOrderNumber": "string",
                "salesChannel": "string",
                "ebayId": "string",
                "ebayOrderId": "string",
                "labelType": "string",
                "trackingNumber": "string",
                "carrierName": "string",
                "buyerName": "string",
                "buyerCountry": "string",
                "buyerAddress1": "string",
                "buyerAddress2": "string",
                "buyerCity": "string",
                "buyerState": "string",
                "buyerPostalCode": "string",
                "buyerEmail": "string",
                "buyerPhoneNumber": "string",
                "parcelDescription": "string",
                "totalValue": 0,
                "packageLength": 0,
                "packageWidth": 0,
                "packageHeight": 0,
                "dimensionUnit": "string",
                "packageWeight": 0,
                "weightUnit": "string",
                "remark": "string",
                "returnSkuList": [
                    {
                        "skuId": "string",
                        "quantity": 0
                    }
                ],
                "createTime": "string",
                "orderStatus": "string",
                "orderCreateType": 0,
                "estimatedFee": [
                    {
                        "currency": "string",
                        "feeCode": "string",
                        "feeNameUs": "string",
                        "feeSubCodeList": [
                            "string"
                        ],
                        "revenueSubItemName": "string",
                        "originFee": 0,
                        "discountFee": 0,
                        "totalFee": 0,
                        "estimatedTax": 0,
                        "estimatedFeeAmount": 0
                    }
                ],
                "actualFee": [
                    {
                        "currency": "string",
                        "feeCode": "string",
                        "feeNameUs": "string",
                        "feeSubCodeList": [
                            "string"
                        ],
                        "revenueSubItemName": "string",
                        "originFee": 0,
                        "discountFee": 0,
                        "totalFee": 0,
                        "actualTax": 0,
                        "actualFeeAmount": 0
                    }
                ],
                "inspectionResult": 0,
                "packagePictureList": [
                    "string"
                ],
                "productList": [
                    {
                        "skuUuid": "string",
                        "skuId": "string",
                        "originalBarcode": "string",
                        "packagingStatus": 0,
                        "inspectionResult": 0,
                        "handleMethod": 0,
                        "quantity": 0,
                        "actualSkuLength": 0,
                        "actualSkuWidth": 0,
                        "actualSkuHeight": 0,
                        "actualDimensionUnit": "string",
                        "actualSkuWeight": 0,
                        "actualWeightUnit": "string",
                        "skuPictureList": [
                            "string"
                        ]
                    }
                ],
                "trackingEventList": [
                    {
                        "eventCode": "string",
                        "eventCountry": "string",
                        "eventDesc": "string",
                        "eventTime": "string",
                        "timeZone": "string"
                    }
                ]
            }
        ]
    },
    "isFallback": true
}
Modified at 2026-06-17 01:28:31
Previous
Outbound Callback Webhook Reception
Next
获取面单
Built with