1. Return
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
      POST
    • Outbound Order Query v2
      POST
    • Outbound Order Cancellation
      POST
    • placeThirdPartyLabelOrder
      POST
  • Pricing
    • GetServiceList
    • Cost Estimation
    • Cost Estimation Request
    • Cost Estimation Response
  • VAS
    • placeVasOrder
    • queryVasOrderDetail
    • cancelVasOrder
  • Return
    • Create RMA
      POST
    • Get Return Label
      GET
    • Cancel RMA
      POST
    • Return Order Query
      GET
    • Return Stock Snapshot
      POST
    • Return Association
      POST
  • Transaction
    • transactionDetailsQuery
    • transactionQuery
  • Webhook
    • Outbound Callback Webhook Reception
  1. Return

Cancel RMA

Sandbox
https://openapi-stage-hk.orangeconnex.com/openapi
Sandbox
https://openapi-stage-hk.orangeconnex.com/openapi
POST
/3pp/returns/v1/cancel/rma
3PPs shall synchronize cancelled return orders to OC.
After sellers cancel return orders on the 3PP portal, OC allows 3PPs to cancel order by return order number.

Request

Header Params

Body Params application/json

Examples
{
  "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
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
{
    "success": true,
    "code": 0,
    "messageId": "18563168780434",
    "message": "成功",
    "data": null,
    "errors": null
}
Modified atΒ 2026-07-08 13:26:33
Previous
Get Return Label
Next
Return Order Query
Built with