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 退货订单开放接口

取消 RMA 订单或同步更新退货跟踪信息

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

Request

Header Params

Body Params application/json

Example
{
  "messageId": "{{messageId}}",
  "data": {
    "orderNumber": "OCS1DE000453014",
    "cancelType": 1
  }
}

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/cancel/rma' \
--header 'Access-Token: ' \
--header 'Content-Type: application/json' \
--data '{
  "messageId": "{{messageId}}",
  "data": {
    "orderNumber": "OCS1DE000453014",
    "cancelType": 1
  }
}'

Responses

🟢200
application/json
Bodyapplication/json

Example
{
    "requestId": "string",
    "success": true,
    "hasBusinessException": true,
    "errorCode": "string",
    "errorMsg": "string",
    "message": "string",
    "result": null,
    "isFallback": true
}
Modified at 2026-06-17 02:04:58
Previous
获取面单
Next
查询退货库存快照
Built with