---
title: "Cancel an Inbound Transfer"
method: POST
path: "/v1/inbound_transfers/{id}/cancel"
tags: ["inboundTransfers"]
---

# Cancel an Inbound Transfer

`POST /v1/inbound_transfers/{id}/cancel`

Cancel an inbound transfer.
Returns the Inbound Transfer object if the cancelation succeeded.
Returns a 412 Precondition Failed if the Inbound Transfer has already been canceled or cannot be canceled.

## Path parameters

- `id` string, required

## Response `200`

The inbound transfer was canceled

- 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
- `409` — Resource Conflicts
- `412` — Precondition Failed
- `500` — Internal Server Error

## Changes

- **2026-06-25** `832437736659` — 28 breaking, 35 info
  - removed the required property `code` from the response with the `400` status
  - removed the required property `code` from the response with the `401` status
  - removed the required property `code` from the response with the `403` status
  - removed the required property `code` from the response with the `404` status
  - …59 more

[Change history](https://skmtc.dev/chariot-giving/apis/specs/changes/v1/inbound_transfers/:id/cancel/post.md)

---

[API](https://skmtc.dev/chariot-giving/apis/specs.md) · [All operations](https://skmtc.dev/chariot-giving/apis/specs/llms.txt) · [OpenAPI document](https://skmtc.dev/chariot-giving/apis/specs/revisions/f305f0c14ede?raw)
