---
title: "Get an Inbound Transfer"
method: GET
path: "/v1/inbound_transfers/{id}"
tags: ["inboundTransfers"]
---

# Get an Inbound Transfer

`GET /v1/inbound_transfers/{id}`

Get an inbound transfer by its unique identifier.

## Path parameters

- `id` string, required

## Response `200`

The inbound transfer was retrieved

- InboundTransfer — An inbound transfer represents a transfer of funds from an external bank account to a financial account.
  - `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

## 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)
