Skip to main content
POST
/
api
/
Recall
/
cancelRecall
Cancel recall orders
curl --request POST \
  --url https://api.returnshelper.com/uat/user/api/Recall/cancelRecall \
  --header 'Content-Type: application/json' \
  --header 'x-rr-apikey: <api-key>' \
  --header 'x-rr-apitoken: <api-key>' \
  --data '
{
  "recallIdList": [
    123
  ]
}
'
{
  "recallList": [
    {
      "apiId": 123,
      "recallId": 123,
      "warehouseId": 123,
      "recallNumber": "<string>",
      "recallStatusCode": "<string>",
      "warehouseRemarks": "<string>",
      "recallInventoryList": [
        {}
      ]
    }
  ]
}
Cancels a pending recall order by recallId. Use cancelRecallByReturnInventoryId instead if you only have the inventory ID.

Authorizations

x-rr-apikey
string
header
required

Your API key

x-rr-apitoken
string
header
required

Your API token — keep this private

Body

application/json
recallIdList
integer<int64>[]
required

List of recall IDs to cancel

Response

Success

recallList
object[]

List of cancelled recalls