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
Get Company Info
Retrieve company info from the database based on the ID
curl --request POST \
--url https://api.rootfi.dev/accounting/company_info/all \
--header 'Content-Type: application/json' \
--header 'api_key: <api-key>' \
--data '{
"take": 10,
"skip": 0,
"orderBy": {
"base_currency": "asc"
},
"filter": {
"name": {
"eq": "Rootfi Technologies Pvt Ltd"
}
}
}'
{
"data": {
"data": [
{
"rootfi_id": 3732,
"rootfi_company_id": 1672,
"rootfi_organisation_id": 1,
"rootfi_updated_at": "2023-10-25T13:39:29.649Z",
"rootfi_integration_type": "ZOHO_BOOKS",
"rootfi_created_at": "2023-10-25T13:39:29.650Z",
"platform_id": "8635772_SB1",
"name": "Rootfi Technologies Pvt Ltd",
"legal_name": "Rootfi Technologies Pvt Ltd",
"tax_number": null,
"registration_number": null,
"base_currency": "GBP",
"fiscal_start_at": "2000-12-31T18:30:00.000Z",
"org_created_at": null,
"updated_at": "2023-03-31T03:34:00.000Z"
}
],
"total_count": 1
},
"request_timestamp": "2023-10-25T13:39:29.650Z",
"response_timestamp": "2023-10-25T13:39:29.650Z",
"request_id": "b1b9c0a0-4b1a-11ec-9b2b-0242ac130003"
}
The Company Info Data Model is designed to simplify the management and retrieval of company-related information across various accounting platforms.
curl --request POST \
--url https://api.rootfi.dev/accounting/company_info/all \
--header 'Content-Type: application/json' \
--header 'api_key: <api-key>' \
--data '{
"take": 10,
"skip": 0,
"orderBy": {
"base_currency": "asc"
},
"filter": {
"name": {
"eq": "Rootfi Technologies Pvt Ltd"
}
}
}'
Authorizations
Body
asc
, desc
asc
, desc
asc
, desc
asc
, desc
asc
, desc
asc
, desc
asc
, desc
asc
, desc
asc
, desc
asc
, desc
Response
The platform id of the company info
The unique ID we assign for that data's information
The RootFi designated id for the company
The RootFi designated id for the organisation
The accounting platform from which the data is being retrieved
ZOHO_BOOKS
, QUICKBOOKS_SANDBOX
, QUICKBOOKS
, XERO
, TALLY
, SAGE_CLOUD_ACCOUNTING
, MS_DYNAMICS_365
, SAGE_ZA_CLOUD_ACCOUNTING
, MYOB_BUSINESS
, WAVE
, ODOO_ACCOUNTING
, NETSUITE
, WAFEQ
, MEKARI_JURNAL
, BUSY
, ROOTFI_SANDBOX
, QOYOD
The latest date at which RootFi updated this data
The date at which RootFi first synced this data
The name of the company info
The legal name of the company info
The tax number of the company info
The registration number of the company info
The base currency of the company info
The fiscal start at of the company info
The org created at of the company info
The last ISO 8601 timestamp that the data was updated at
Total Count of response object
The time at which the request was received by the server
The time at which the response was sent by the server
The unique ID of the request
curl --request POST \
--url https://api.rootfi.dev/accounting/company_info/all \
--header 'Content-Type: application/json' \
--header 'api_key: <api-key>' \
--data '{
"take": 10,
"skip": 0,
"orderBy": {
"base_currency": "asc"
},
"filter": {
"name": {
"eq": "Rootfi Technologies Pvt Ltd"
}
}
}'
{
"data": {
"data": [
{
"rootfi_id": 3732,
"rootfi_company_id": 1672,
"rootfi_organisation_id": 1,
"rootfi_updated_at": "2023-10-25T13:39:29.649Z",
"rootfi_integration_type": "ZOHO_BOOKS",
"rootfi_created_at": "2023-10-25T13:39:29.650Z",
"platform_id": "8635772_SB1",
"name": "Rootfi Technologies Pvt Ltd",
"legal_name": "Rootfi Technologies Pvt Ltd",
"tax_number": null,
"registration_number": null,
"base_currency": "GBP",
"fiscal_start_at": "2000-12-31T18:30:00.000Z",
"org_created_at": null,
"updated_at": "2023-03-31T03:34:00.000Z"
}
],
"total_count": 1
},
"request_timestamp": "2023-10-25T13:39:29.650Z",
"response_timestamp": "2023-10-25T13:39:29.650Z",
"request_id": "b1b9c0a0-4b1a-11ec-9b2b-0242ac130003"
}