v31

latestOpenAPI 3.0.0raw.githubusercontent.com2026-07-215985245.8 KB
inboundTransfers

List Inbound Transfers

List inbound transfers for your account.

get/v1/inbound_transfers

Query parameters

limitinteger

Limit the size of the list that is returned. The default (and maximum) is 100 objects.

pageTokenstring

The cursor to use for pagination. If not set, the first page of results will be returned.

Response

The response for InboundTransfers.list

nextPageTokenstring

A cursor token to use to retrieve the next page of results by making another API call to the same endpoint with the same parameters (only changing the pageToken). If specified, then more results exist on the server that were not returned, otherwise no more results exist on the server.

Example response

{
  "results": [
    {
      "id": "inbound_transfer_01j8rs605a4gctmbm58d87mvsj",
      "amount": 10000,
      "description": "InboundTransfer from my bank account",
      "status": "pending",
      "created_at": "2020-01-31T23:00:00Z",
      "updated_at": "2020-01-31T23:00:00Z"
    }
  ]
}