Get RMA Items - Sellercloud API Docs

Overview

This endpoint can be used to retrieve the items of an existing RMA.

In order to consume the endpoint 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 call.

Endpoint

Example for such endpoint for TT server is:

https://tt.api.sellercloud.com/rest/api/Rma/{rmaID}/Items​​

For your server endpoint will be:

https://{your_server_id}.api.sellercloud.com/rest/api/Rma/{rmaID}/Items

Request

Parameter Data Type Description
Id (in URL) integer ID of existing RMA

Response

[
  {
    "ID": 0,
    "ProductID": "string",
    "ProductName": "string",
    "OriginalOrderID": 0,
    "ShippedByID": 0,
    "ShippedByName": "string",
    "QtyOrdered": 0,
    "QtyReturned": 0,
    "QtyReceived": 0,
    "ReturnReason": 0,
    "ReturnResolution": "string",
    "ReturnResolutionID": 0,
    "RefundAmount": 0,
    "ProblemDescription": "string",
    "ApprovalStatus": 0
  }
]