Bank Accounts
Get All Bank Accounts
General
Server Side SDKs
Core API
- Companies
- Invite Links
- Integrations
- Sync
- Jobs
- Passthrough
Unified API
- Accounting
- Accounts
- Bank Accounts
- Bank Transactions
- Bills
- Bill Payments
- Bill Credit Notes
- Contacts
- Company Info
- Currencies
- Documents
- Expenses
- Invoice Credit Notes
- Invoices
- Invoice Payments
- Items
- Journal Entries
- Purchase Orders
- Sales Orders
- Goods Receipt Notes
- Projects
- Tax Rates
- Tracking Categories
- Balance Sheet
- Cash Flow Statements
- Income Statements
Bank Accounts
Get All Bank Accounts
List all Bank Accounts
POST
/
accounting
/
bank_account
/
all
curl --request POST \
--url https://api.rootfi.dev/accounting/bank_account/all \
--header 'Content-Type: application/json' \
--header 'api_key: <api-key>' \
--data '{
"filter": {
"account_name": {
"eq": "Rootfi Test"
}
},
"orderBy": {
"balance": "asc"
},
"take": 10,
"skip": 0
}'
{
"data": {
"data": [
{
"rootfi_id": 123456,
"rootfi_company_id": 123456,
"rootfi_organisation_id": 123456,
"rootfi_integration_type": "ZOHO_BOOKS",
"rootfi_updated_at": "2021-09-28T15:00:00.000Z",
"rootfi_created_at": "2021-09-28T15:00:00.000Z",
"platform_id": "123456",
"currency_id": "3770712000000000099",
"institution_name": "Bank Central Asia",
"account_name": "Rootfi Test",
"account_number": "1234567890",
"category": "DEPOSIT",
"balance": 55000,
"updated_at": "2021-09-28T15:00:00.000Z",
"currency": {
"data": {
"platform_id": "3770712000000000099",
"name": "Indian Rupee",
"code": "INR",
"symbol": "₹",
"is_base_currency": true,
"exchange_rate": 0,
"updated_at": null
}
}
}
],
"total_count": 1
},
"request_timestamp": "2021-10-13T15:00:00.000Z",
"response_timestamp": "2021-10-13T15:00:00.000Z",
"request_id": "7a1c0e42-9f85-4d6e-bb5d-358a72913c0b"
}
The Bank Accounts Data Model streamlines access of bank account information across various accounting platforms, providing a consistent and unified representation of bank account data.
curl --request POST \
--url https://api.rootfi.dev/accounting/bank_account/all \
--header 'Content-Type: application/json' \
--header 'api_key: <api-key>' \
--data '{
"filter": {
"account_name": {
"eq": "Rootfi Test"
}
},
"orderBy": {
"balance": "asc"
},
"take": 10,
"skip": 0
}'
Authorizations
Body
application/json
Response
200 - application/json
The response is of type object
.
curl --request POST \
--url https://api.rootfi.dev/accounting/bank_account/all \
--header 'Content-Type: application/json' \
--header 'api_key: <api-key>' \
--data '{
"filter": {
"account_name": {
"eq": "Rootfi Test"
}
},
"orderBy": {
"balance": "asc"
},
"take": 10,
"skip": 0
}'
{
"data": {
"data": [
{
"rootfi_id": 123456,
"rootfi_company_id": 123456,
"rootfi_organisation_id": 123456,
"rootfi_integration_type": "ZOHO_BOOKS",
"rootfi_updated_at": "2021-09-28T15:00:00.000Z",
"rootfi_created_at": "2021-09-28T15:00:00.000Z",
"platform_id": "123456",
"currency_id": "3770712000000000099",
"institution_name": "Bank Central Asia",
"account_name": "Rootfi Test",
"account_number": "1234567890",
"category": "DEPOSIT",
"balance": 55000,
"updated_at": "2021-09-28T15:00:00.000Z",
"currency": {
"data": {
"platform_id": "3770712000000000099",
"name": "Indian Rupee",
"code": "INR",
"symbol": "₹",
"is_base_currency": true,
"exchange_rate": 0,
"updated_at": null
}
}
}
],
"total_count": 1
},
"request_timestamp": "2021-10-13T15:00:00.000Z",
"response_timestamp": "2021-10-13T15:00:00.000Z",
"request_id": "7a1c0e42-9f85-4d6e-bb5d-358a72913c0b"
}