Retrieve all transfers from a business' accounting platform.
The Transfer object
Transfers is a data type of account transactions and represents money movement between different bank accounts.
Property | Type | Description |
---|---|---|
id | string | A Rutter designated ID for a bank transfer object. It always will be in UUID format |
date | string | The last ISO 8601 |
currency | string | The ISO-4217 currency code |
currency_rate | number | Rate between the currency of the invoice and the base currency. |
total_amount | number | Total amount associated with the bank transfer. |
updated_at | string | The last ISO 8601 |
to_account_id | string | The Account ID the transfer is going to |
from_account_id | string | The Account ID the transfer coming from |
memo | string | Description of the bank transfer (when available) |
{
"id": "123",
"date": "2021-03-09T10:18:29.985Z",
"currency": "USD",
"currency_rate": 1.13,
"total_amount": 1000.5,
"to_account_id": "4578",
"from_account_id": "1232",
"from_bank_transaction_id": "b11794bc",
"to_bank_transaction_id": "b11794cd",
"memo": "Reference to bank transfer.",
"updated_at": "2021-03-09T10:18:29.985Z"
}