Bank Transfers
The BankTransfer Object
Currently, there's only support between accounts of the same currency.
Properties
id
stringThe Rutter generated unique ID of the bank transfer.
platform_id
stringThe platform specific ID of the bank transfer.
class_id
stringnullableThe Rutter ID of the Class linked to the bank transfer line item.
credit_account_id
stringnullableThe Rutter ID of the Account linked to the bank transfer. Represents the asset account being credited.
debit_account_id
stringnullableThe Rutter ID of the Account linked to the bank transfer. Represents the asset account being debit.
department_id
stringnullableThe Rutter ID of the Department linked to the bank transfer line item.
location_id
stringnullableThe Rutter ID of the Location linked to the bank transfer line item.
subsidiary_id
stringnullableThe Rutter ID of the Subsidiary linked to the bank transfer. Supported for NetSuite.
transaction_date
stringThe ISO 8601 timestamp for the transaction date of the bank transfer.
currency_code
enumThe ISO 4217 currency code of the bank transfer.
total_amount
numberThe total amount of the bank transfer.
memo
stringnullableThe memo of the bank transfer.
created_at
stringfilterablenullableThe ISO 8601 timestamp that the bank transfer was created.
updated_at
stringfilterablenullableThe ISO 8601 timestamp that the bank transfer was last updated.
last_synced_at
stringfilterableThe ISO 8601 timestamp when the bank transfer was last synced by Rutter.
platform_url
stringnullableA URL pointing to the object in the underlying platform. When no URL exists for the specific object, the value may be a larger URL containing the object.
platform_data
objectOptionalThe raw platform data corresponding to the Rutter object.
List Bank Transfers
Request Parameters
access_token
stringqueryRequiredThe access token of the connection.
cursor
stringqueryOptionalUsed to paginate to the next batch of objects. Should be a copy of the next_cursor
value from the previous response.
limit
integerqueryOptionalUsed to limit the number of returned objects. Defaults to 50.
filter
stringqueryOptionalNot currently supported on Sage Intacct or Sage Business Cloud. Used to specify a filtering criteria for response objects. Refer to Filtering Objects to understand the syntax for the filtering criteria. The filtering syntax only supports fields decorated with a filterable
tag in the response object.
Filterable fields: created_at
, updated_at
, last_synced_at
.
sort
stringqueryOptionalUsed to sort the response objects, e.g. last_synced_at ASC
. If a value is provided but ASC
or DESC
is not, defaults to ASC
. If omitted, defaults to updated_at DESC
. Supports only fields decorated with a filterable
tag in the response object except on Sage Intacct and Dynamics 365 Business Central. For those platforms, only updated_at_min
, updated_at_max
and last_synced_at_min
fields are supported and not deprecated.
Sortable fields: created_at
, updated_at
, last_synced_at
.
expand
enumqueryOptionalInclude platform specific data (includes additional fields not provided by the Rutter object).
last_synced_at_min
integerqueryOptionalDeprecated - use filter
instead. Used to filter objects with a last_synced_at
value greater than or equal to the supplied value. Should be a Unix time in milliseconds.
updated_at_max
integerqueryOptionalDeprecated - use filter
instead. Used to filter objects with a updated_at
value less than or equal to the supplied value. Should be a Unix time in milliseconds.
updated_at_min
integerqueryOptionalDeprecated - use filter
instead. Used to filter objects with a updated_at
value greater than or equal to the supplied value. Should be a Unix time in milliseconds.
force_fetch
enumqueryOptionalUsed to force a response even if the underlying connection has not finished its initial sync.
Response Body
- QuickBooks
- Xero
- NetSuite
- Sage Intacct
1{
2 "bank_transfers": [
3 {
4 "id": "00000000-0000-0000-0000-000000000000",
5 "platform_id": "12345678",
6 "class_id": "00000000-0000-0000-0000-000000000000",
7 "credit_account_id": "00000000-0000-0000-0000-000000000000",
8 "debit_account_id": "00000000-0000-0000-0000-000000000000",
9 "department_id": "00000000-0000-0000-0000-000000000000",
10 "location_id": "00000000-0000-0000-0000-000000000000",
11 "subsidiary_id": "00000000-0000-0000-0000-000000000000",
12 "transaction_date": "2023-01-02T02:34:56.000Z",
13 "currency_code": "USD",
14 "total_amount": 123.45,
15 "memo": "This is a memo.",
16 "created_at": "2023-01-02T02:34:56.000Z",
17 "updated_at": "2023-01-02T02:34:56.000Z",
18 "last_synced_at": "2023-01-02T02:34:56.000Z",
19 "platform_url": "https://platform.com/resource?id=123",
20 "platform_data": {
21 "id": 123,
22 "data": "Varies by platform"
23 }
24 }
25 ],
26 "next_cursor": "MTY3NDgzMTk0Ml82MDY4ZDI0ZC02NGRmLTRmN2EtYTM0Ny0zN2ZmNjY5MGVmMjU=",
27 "connection": {
28 "id": "00000000-0000-0000-0000-000000000000",
29 "orgId": "00000000-0000-0000-0000-000000000000",
30 "platform": "NETSUITE"
31 }
32}
Fetch a Bank Transfer
Request Parameters
id
stringpathRequiredThe unique ID of the object.
access_token
stringqueryRequiredThe access token of the connection.
id_type
enumqueryOptionalUsed to indicate the type of id
that is supplied. Defaults to rutter
. Not currently supported on Sage Intacct or Sage Business Cloud.
force_fetch
enumqueryOptionalUsed to force a response even if the underlying connection has not finished its initial sync.
Response Body
- QuickBooks
- Xero
- NetSuite
- Sage Intacct
1{
2 "bank_transfer": {
3 "id": "00000000-0000-0000-0000-000000000000",
4 "platform_id": "12345678",
5 "class_id": "00000000-0000-0000-0000-000000000000",
6 "credit_account_id": "00000000-0000-0000-0000-000000000000",
7 "debit_account_id": "00000000-0000-0000-0000-000000000000",
8 "department_id": "00000000-0000-0000-0000-000000000000",
9 "location_id": "00000000-0000-0000-0000-000000000000",
10 "subsidiary_id": "00000000-0000-0000-0000-000000000000",
11 "transaction_date": "2023-01-02T02:34:56.000Z",
12 "currency_code": "USD",
13 "total_amount": 123.45,
14 "memo": "This is a memo.",
15 "created_at": "2023-01-02T02:34:56.000Z",
16 "updated_at": "2023-01-02T02:34:56.000Z",
17 "last_synced_at": "2023-01-02T02:34:56.000Z",
18 "platform_url": "https://platform.com/resource?id=123",
19 "platform_data": {
20 "id": 123,
21 "data": "Varies by platform"
22 }
23 },
24 "connection": {
25 "id": "00000000-0000-0000-0000-000000000000",
26 "orgId": "00000000-0000-0000-0000-000000000000",
27 "platform": "NETSUITE"
28 }
29}
Create a Bank Transfer
Request Parameters
access_token
stringqueryRequiredThe access token of the connection.
Request Body
response_mode
enumOptionalThe response mode for our async endpoints. prefer_sync
allows calling the API in a best-effort, synchronous fashion and wait for the response. If this takes too long we will instead return the asynchronous response. This is the default behavior. async
makes the API respond with the asynchronous response. See Asynchronous Operations.
bank_transfer
objectbank_transfer
attributesResponse Body
- QuickBooks
- Xero
1{
2 "bank_transfer": {
3 "class_id": "00000000-0000-0000-0000-000000000000",
4 "credit_account_id": "00000000-0000-0000-0000-000000000000",
5 "debit_account_id": "00000000-0000-0000-0000-000000000000",
6 "department_id": "00000000-0000-0000-0000-000000000000",
7 "location_id": "00000000-0000-0000-0000-000000000000",
8 "transaction_date": "2023-01-02T02:34:56.000Z",
9 "total_amount": 123.45,
10 "memo": "This is a memo."
11 }
12}
1{
2 "bank_transfer": {
3 "id": "00000000-0000-0000-0000-000000000000",
4 "platform_id": "12345678",
5 "class_id": "00000000-0000-0000-0000-000000000000",
6 "credit_account_id": "00000000-0000-0000-0000-000000000000",
7 "debit_account_id": "00000000-0000-0000-0000-000000000000",
8 "department_id": "00000000-0000-0000-0000-000000000000",
9 "location_id": "00000000-0000-0000-0000-000000000000",
10 "subsidiary_id": "00000000-0000-0000-0000-000000000000",
11 "transaction_date": "2023-01-02T02:34:56.000Z",
12 "currency_code": "USD",
13 "total_amount": 123.45,
14 "memo": "This is a memo.",
15 "created_at": "2023-01-02T02:34:56.000Z",
16 "updated_at": "2023-01-02T02:34:56.000Z",
17 "last_synced_at": "2023-01-02T02:34:56.000Z",
18 "platform_url": "https://platform.com/resource?id=123",
19 "platform_data": {
20 "id": 123,
21 "data": "Varies by platform"
22 }
23 }
24}
Update a Bank Transfer
Request Parameters
id
stringpathRequiredThe Rutter generated unique ID of the object.
access_token
stringqueryRequiredThe access token of the connection.
Request Body
response_mode
enumOptionalThe response mode for our async endpoints. prefer_sync
allows calling the API in a best-effort, synchronous fashion and wait for the response. If this takes too long we will instead return the asynchronous response. This is the default behavior. async
makes the API respond with the asynchronous response. See Asynchronous Operations.
bank_transfer
objectbank_transfer
attributesResponse Body
- QuickBooks
1{
2 "bank_transfer": {
3 "credit_account_id": "00000000-0000-0000-0000-000000000000",
4 "debit_account_id": "00000000-0000-0000-0000-000000000000",
5 "transaction_date": "2023-01-02T02:34:56.000Z",
6 "total_amount": 123.45,
7 "memo": "This is a memo."
8 }
9}
1{
2 "bank_transfer": {
3 "id": "00000000-0000-0000-0000-000000000000",
4 "platform_id": "12345678",
5 "class_id": "00000000-0000-0000-0000-000000000000",
6 "credit_account_id": "00000000-0000-0000-0000-000000000000",
7 "debit_account_id": "00000000-0000-0000-0000-000000000000",
8 "department_id": "00000000-0000-0000-0000-000000000000",
9 "location_id": "00000000-0000-0000-0000-000000000000",
10 "subsidiary_id": "00000000-0000-0000-0000-000000000000",
11 "transaction_date": "2023-01-02T02:34:56.000Z",
12 "currency_code": "USD",
13 "total_amount": 123.45,
14 "memo": "This is a memo.",
15 "created_at": "2023-01-02T02:34:56.000Z",
16 "updated_at": "2023-01-02T02:34:56.000Z",
17 "last_synced_at": "2023-01-02T02:34:56.000Z",
18 "platform_url": "https://platform.com/resource?id=123",
19 "platform_data": {
20 "id": 123,
21 "data": "Varies by platform"
22 }
23 }
24}
Delete a Bank Transfer
Request Parameters
id
stringpathRequiredThe Rutter generated unique ID of the object.
access_token
stringqueryRequiredThe access token of the connection.
Request Body
response_mode
enumOptionalThe response mode for our async endpoints. prefer_sync
allows calling the API in a best-effort, synchronous fashion and wait for the response. If this takes too long we will instead return the asynchronous response. This is the default behavior. async
makes the API respond with the asynchronous response. See Asynchronous Operations.
Response Body
- QuickBooks
1{
2 "code": "deleted",
3 "success": true
4}
Have questions?
Contact support for personalized guidance.