---
title: "List Inbound Transfers"
method: GET
path: "/v1/inbound_transfers"
tags: ["inboundTransfers"]
---

# List Inbound Transfers

`GET /v1/inbound_transfers`

List inbound transfers for your account.

## Query parameters

- `limit` integer
- `pageToken` string

## Response `200`

The response for InboundTransfers.list

- object
  - `results` InboundTransfer[]
    - `id` string, required — The unique identifier for the inbound transfer
    - `amount` integer, required — The amount of the inbound transfer in minor currency units (cents). This amount must be positive.
    - `description` string — An arbitrary string attached to the object. Often useful for displaying to users.
    - `status` 'pending' | 'completed' | 'canceled' | 'failed' — The status of the inbound transfer. An Inbound Transfer is `pending` if it created and the funds haven't been received yet. The status changes to `completed` when the funds have been received and the balance of the financial account has been updated. The status changes to `canceled` if the transfer is canceled. The status changes to `failed` if the transfer fails.
    - `created_at` string, date-time, required — The date and time the inbound transfer was created
    - `updated_at` string, date-time — The date and time the inbound transfer was last updated
  - `nextPageToken` string — 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.

## Other responses

- `400` — The request is invalid or contains invalid parameters
- `401` — Unauthorized. The request is missing the security (OAuth2 Bearer token) requirements and the server is unable to verify the identify of the caller.
- `403` — Access denied
- `404` — Resource Not Found
- `500` — Internal Server Error

---

[API](https://skmtc.net/chariot-giving/apis/chariot-api-4.md) · [All operations](https://skmtc.net/chariot-giving/apis/chariot-api-4/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/chariot-giving/chariot-api-4/versions/c194d399d515/schema)
