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. This feature is currently only supported on 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 on the bank transfer.
memo
stringnullableMemo or description of the bank transfer
created_at
stringnullableThe ISO 8601 timestamp that the bank transfer was created.
updated_at
stringnullableThe ISO 8601 timestamp that the bank transfer was last updated.
platform_data
objectoptionalThe raw platform data corresponding to the Rutter object.
platform_data
attributes{
"id": "00000000-0000-0000-0000-000000000000",
"platform_id": "12345678",
"class_id": "00000000-0000-0000-0000-000000000000",
"credit_account_id": "00000000-0000-0000-0000-000000000000",
"debit_account_id": "00000000-0000-0000-0000-000000000000",
"department_id": "00000000-0000-0000-0000-000000000000",
"location_id": "00000000-0000-0000-0000-000000000000",
"subsidiary_id": "00000000-0000-0000-0000-000000000000",
"transaction_date": "2023-01-02T02:34:56.000Z",
"currency_code": "USD",
"total_amount": 123.45,
"memo": "This is a memo.",
"created_at": "2023-01-02T02:34:56.000Z",
"updated_at": "2023-01-02T02:34:56.000Z",
"platform_data": {
"id": 123,
"data": "Varies by platform"
}
}
List Bank Transfers
GET /accounting/bank_transfersRequest Parameters
access_token
stringqueryThe access token of the connection.
cursor
stringoptionalqueryThe cursor to use for pagination. This value is passed in from next_cursor
field in a previous request.
expand
enumoptionalqueryUsed to request inclusion of optional objects.
force_fetch
enumoptionalqueryForce a response even if the underlying connection hasn't finished the initial sync.
limit
integeroptionalqueryThe limit on the number of entities returned.
updated_at_max
integeroptionalqueryUnix Timestamp in milliseconds representing the maximum updated_at datetime to fetch entities from.
updated_at_min
integeroptionalqueryUnix Timestamp in milliseconds representing the minimum updated_at datetime to fetch entities from.
Response Body
connection
objectconnection
attributesbank_transfers
arraybank_transfers
attributesnext_cursor
stringnullableoptional{
"connection": {
"id": "00000000-0000-0000-0000-000000000000",
"orgId": "00000000-0000-0000-0000-000000000000",
"platform": "NETSUITE"
},
"bank_transfers": [
{
"id": "00000000-0000-0000-0000-000000000000",
"platform_id": "12345678",
"class_id": "00000000-0000-0000-0000-000000000000",
"credit_account_id": "00000000-0000-0000-0000-000000000000",
"debit_account_id": "00000000-0000-0000-0000-000000000000",
"department_id": "00000000-0000-0000-0000-000000000000",
"location_id": "00000000-0000-0000-0000-000000000000",
"subsidiary_id": "00000000-0000-0000-0000-000000000000",
"transaction_date": "2023-01-02T02:34:56.000Z",
"currency_code": "USD",
"total_amount": 123.45,
"memo": "This is a memo.",
"created_at": "2023-01-02T02:34:56.000Z",
"updated_at": "2023-01-02T02:34:56.000Z",
"platform_data": {
"id": 123,
"data": "Varies by platform"
}
}
],
"next_cursor": "MTY3NDgzMTk0Ml82MDY4ZDI0ZC02NGRmLTRmN2EtYTM0Ny0zN2ZmNjY5MGVmMjU="
}
Fetch a Bank Transfer
GET /accounting/bank_transfers/:idRequest Parameters
access_token
stringqueryThe access token of the connection.
force_fetch
enumoptionalqueryForce a response even if the underlying connection hasn't finished the initial sync.
Response Body
connection
objectconnection
attributesbank_transfer
objectbank_transfer
attributes{
"connection": {
"id": "00000000-0000-0000-0000-000000000000",
"orgId": "00000000-0000-0000-0000-000000000000",
"platform": "NETSUITE"
},
"bank_transfer": {
"id": "00000000-0000-0000-0000-000000000000",
"platform_id": "12345678",
"class_id": "00000000-0000-0000-0000-000000000000",
"credit_account_id": "00000000-0000-0000-0000-000000000000",
"debit_account_id": "00000000-0000-0000-0000-000000000000",
"department_id": "00000000-0000-0000-0000-000000000000",
"location_id": "00000000-0000-0000-0000-000000000000",
"subsidiary_id": "00000000-0000-0000-0000-000000000000",
"transaction_date": "2023-01-02T02:34:56.000Z",
"currency_code": "USD",
"total_amount": 123.45,
"memo": "This is a memo.",
"created_at": "2023-01-02T02:34:56.000Z",
"updated_at": "2023-01-02T02:34:56.000Z",
"platform_data": {
"id": 123,
"data": "Varies by platform"
}
}
}
Create a Bank Transfer
POST /accounting/bank_transfersRequest Parameters
access_token
stringqueryThe access token of the connection.
Request Body
bank_transfer
objectbank_transfer
attributesResponse Body
Any of:
bank_transfer
objectbank_transfer
attributesasync_response
objectoptionalasync_response
attributeserrors
arrayoptionalerrors
attributes{
"bank_transfer": {
"class_id": "00000000-0000-0000-0000-000000000000",
"credit_account_id": "00000000-0000-0000-0000-000000000000",
"debit_account_id": "00000000-0000-0000-0000-000000000000",
"department_id": "00000000-0000-0000-0000-000000000000",
"location_id": "00000000-0000-0000-0000-000000000000",
"transaction_date": "2023-01-02T02:34:56.000Z",
"total_amount": 123.45,
"memo": "This is a memo."
}
}
{
"bank_transfer": {
"id": "00000000-0000-0000-0000-000000000000",
"platform_id": "12345678",
"class_id": "00000000-0000-0000-0000-000000000000",
"credit_account_id": "00000000-0000-0000-0000-000000000000",
"debit_account_id": "00000000-0000-0000-0000-000000000000",
"department_id": "00000000-0000-0000-0000-000000000000",
"location_id": "00000000-0000-0000-0000-000000000000",
"subsidiary_id": "00000000-0000-0000-0000-000000000000",
"transaction_date": "2023-01-02T02:34:56.000Z",
"currency_code": "USD",
"total_amount": 123.45,
"memo": "This is a memo.",
"created_at": "2023-01-02T02:34:56.000Z",
"updated_at": "2023-01-02T02:34:56.000Z",
"platform_data": {
"id": 123,
"data": "Varies by platform"
}
}
}