---
title: "Returns a list of returns"
method: GET
path: "/logistics-returns"
tags: ["Logistics Returns"]
---

# Returns a list of returns

`GET /logistics-returns`

Get all returns.

## Query parameters

- `createdTime` object
- `endingBefore` string
- `startingAfter` string
- `limit` integer
- `ids` string[]
- `orderId` string
- `type` string
- `rmaNumber` string

## Response `200`

200 OK

- object
  - `hasMore` boolean — Whether or not there are more elements available after this set. If false this set represents the end of the list.
  - `data` ReturnResponse[]
    - `id` string — The unique identifier of the return.
    - `createdTime` string, date-time — The time at which the return was created.
    - `orderId` string — The unique identifier of the order associated with the return.
    - `rmaNumber` string — The return merchandise authorization number.
    - `reason` string — The reason for the return.
    - `type` 'authorization' | 'received' | 'refused' | 'undeliverable'
    - `returnTo` Shipping
      - `address` Address — Represents basic address information.
        - `line1` string, nullable — The first line of the address.
        - `line2` string — The second line of the address.
        - `city` string, nullable — The city of the address.
        - `postalCode` string, nullable — The postal code of the address.
        - `state` string, nullable — The state, county, province, or region.
        - `country` string, required — A [two-letter Alpha-2 country code](https://www.iban.com/country-codes) as described in the [ISO 3166](https://www.iso.org/iso-3166-country-codes.html) international standard.
      - `name` string, nullable — The recipient’s name.
      - `phone` string, nullable — The recipient’s phone number.
      - `email` string, email, nullable — The recipient’s email address.
      - `organization` string, nullable — The recipient’s organization.
      - `additionalAddressInfo` AdditionalAddressInfo — Captures any information that's not included in the basic address.
        - `neighborhood` string, nullable — The neighborhood of the address.
        - `division` string, nullable — A division within an organization.
        - `phoneticName` string, nullable — The phonetic spelling of a name.
    - `items` ReturnItem[]
      - `itemId` string — The identifier of the item.
      - `productDetails` ProductDetails
        - `id` string — The identifier of the product in the upstream system.
        - `skuGroupId` string — The identifier of the SKU group.
        - `name` string — The name of the product.
        - `description` string — The description of the product.
        - `itemBreadcrumb` string — The full path to the category where item is included. Categories should be separated by “ > “.
        - `url` string — The product url.
        - `countryOfOrigin` string — The country of origin of the product.
        - `image` string — The image of the product.
        - `weight` number, double — The weight of the product measured in the unit specified by weightUnit.
        - `weightUnit` 'oz' | 'lb' | 'g' | 'kg' — The unit of measurement applied to the weight.
        - `partNumber` string — The manufacturer's part number.
        - `partnerAccountId` string — The unique, Digital River identifier (account Id) of the partner associated with the sku.
      - `quantity` integer, required — The number of items.
      - `condition` string — Condition of the returned goods.
    - `liveMode` boolean — Has the value <code>true</code> if the object exists in live mode or the value <code>false</code> if the object exists in test mode.

## Other responses

- `400` — 400 Bad Request
- `401` — 401 Unauthorized
- `403` — 403 Forbidden
- `405` — 405 Method Not Allowed
- `406` — 406 Not Acceptable
- `408` — 408 Request Timeout
- `429` — 429 Too Many Requests
- `500` — 500 Internal Server Error
- `502` — 502 Bad Gateway Error
- `503` — 503 Service Unavailable Error
- `504` — 504 Gateway Timeout Error

---

[API](https://skmtc.net/digitalriver/apis/digital-river-api-reference.md) · [All operations](https://skmtc.net/digitalriver/apis/digital-river-api-reference/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/digitalriver/digital-river-api-reference/revisions/f21981db32be/schema)
