Set Resolution For RMA Items - Sellercloud API Docs

Set Resolution For RMA Items

Overview

In order to set resolution for RMA items, you can consume the endpoint presented in this article. In order to consume it, you must:

For information on how you can authenticate, see: Authentication.

As soon as you do authentication and receive a valid token, it needs to be passed to the service call.

Endpoint

Example for such endpoint for TT server is:

https://tt.api.sellercloud.com/rest/api/Rma/{id}/Resolution

For your server endpoint will be:

https://{your_server_id}.api.sellercloud.com/rest/api/Rma/{id}/Resolution

Request

{
  "ResolutionType": "Not_Decided",
  "Comment": "string",
  "Items": [
    {
      "RmaItemID": 0,
      "ReplacementSKU": "string",
      "RefundAmount": 0
    }
  ]
}
Parameter Data Type Description Is Required
ResolutionType string Key value from the RMA Item Return Resolution Type enumeration
(see the enum definition in the enumerations documentation in the link in the end of this document)
true
Comment string Comment true
Item.RmaItemID int ID of RMA item true
Item.ReplacementSKU string If the provided resolution type is “Exchange” then value for this parameter has to be provided.
The value of this parameter indicates the SKU of the product with which the returned item is replaced.
false
Item.RefundAmount decimal If the provided resolution type is “Refund” then value for this parameter has to be provided.
The value of this parameter indicates the amount that is being refunded.
false

Response

Documentation for the enumerations can be found here: Enumerations Documentation.