Transfer funds
Use this endpoint to transfer funds from one Tango Account to the other of the same currency.
Endpoint | Description |
---|---|
GET {URI}/transferFunds | Transfer funds from one Tango Account to the other |
Note:
You can only transfer funds between accounts of the same currency, such as: USD to USD, or CAD to CAD. Funds cannot be transferred between accounts if they have different currencies, such as USD to EUR.
Use the following parameters with GET {URI}/transferFunds
endpoint:
Query parameter | Data type | Description |
---|---|---|
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) The currency amount of the funds being transferred. |
transferNotes | string | (Optional) Transfer notes (up to 150 characters) |
See the following response example when you use GET {URI}/transferFunds
endpoint:
{
"transferDate": "2024-01-18T23:48:48.562Z",
"transferredAmount": 0,
"transferNotes": "string",
"transferFrom": {
"accountIdentifier": "string",
"accountNumber": "string",
"displayName": "string",
"currencyCode": "string",
"startingBalance": 0,
"endingBalance": 0,
"status": "string",
"contactEmail": "string"
},
"transferTo": {
"accountIdentifier": "string",
"accountNumber": "string",
"displayName": "string",
"currencyCode": "string",
"startingBalance": 0,
"endingBalance": 0,
"status": "string",
"contactEmail": "string"
}
}
The response message for this endpoint can be:
- 201 Created
- 400 Bad Request
- 401 Unauthorized
- 403 Forbidden
Updated 4 days ago