---
title: "Transferring funds."
method: POST
path: "/transferFunds"
tags: ["3. Fund"]
---

# Transferring funds.

`POST /transferFunds`

## Request body

- TransferFundsCriteria — The transferFundsCriteria object.
  - `externalRefID` string — specify the external reference id to associate with this funding action. Must be unique
  - `transferFrom` string, required — The accountIdentifier for the Account transferring funds from.
  - `transferTo` string, required — The accountIdentifier for the Account transferring funds to.
  - `amount` number, required — Specify the currency amount of the funds being transferred.
  - `transferNotes` string — Optional transfer notes (up to 150 characters)

## Response `200`

OK

- TransferFundsView
  - `transferDate` string
  - `transferredAmount` number
  - `transferNotes` string
  - `transferFrom` TransferFundsAccountView
    - `accountIdentifier` string
    - `accountNumber` string
    - `displayName` string
    - `currencyCode` string
    - `startingBalance` number
    - `endingBalance` number
    - `status` string
    - `contactEmail` string
  - `transferTo` TransferFundsAccountView
    - `accountIdentifier` string
    - `accountNumber` string
    - `displayName` string
    - `currencyCode` string
    - `startingBalance` number
    - `endingBalance` number
    - `status` string
    - `contactEmail` string
  - `externalRefID` string

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not Found
- `409` — Conflict; Duplicate Exists
- `500` — Internal Server Error
- `503` — Service Unavailable

---

[API](https://skmtc.net/tangocard/apis/tango-api.md) · [All operations](https://skmtc.net/tangocard/apis/tango-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/tangocard/tango-api/revisions/324ad9683921/schema)
