Skip to main content
GET
/
seller
/
transfers
List transfers
curl --request GET \
  --url https://api.managem.co.uk/seller/transfers \
  --header 'Authorization: Bearer <token>'
{
  "transfers": [
    {
      "id": "<string>",
      "amount": 123,
      "currency": "<string>",
      "created": "<string>",
      "reversed": true,
      "description": "<string>",
      "orderId": "<string>",
      "orderItemId": "<string>"
    }
  ],
  "cursor": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

cursor
string

Transfer ID to continue listing from

size
string

Number of transfers per page, defaults to 20

Response

Paginated transfers

Paginated transfers using a cursor for more results

transfers
object[]
required

Transfers returned for this page

cursor
string

Cursor for the next page of results