curl --request POST \
--url https://api.rootfi.dev/accounting/accounts/all \
--header 'Content-Type: application/json' \
--header 'api_key: <api_key>' \
--data '{
"take": 10,
"skip": 0,
"orderBy": {
"nominal_code": "asc"
},
"filter": {
"name": {
"eq": "Rootfi Test"
}
}
}'
{
"data": {
"data": [
{
"rootfi_id": 123456,
"rootfi_company_id": 123456,
"rootfi_organisation_id": 1,
"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": "1234567890123456789",
"currency_id": "3770712000000000099",
"parent_account_id": null,
"nominal_code": "Rootfi 01",
"name": "Test Account",
"description": "Test Description",
"sub_category": "long_term_liability",
"current_balance": 12345,
"category": "LIABILITY",
"status": "ACTIVE",
"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
}
},
"parent_account": {}
}
],
"total_count": 0
},
"request_timestamp": "2021-09-28T15:00:00.000Z",
"response_timestamp": "2021-09-28T15:00:00.000Z",
"request_id": "7a1c0e42-9f85-4d6e-bb5d-358a72913c0b"
}
List all Accounts
curl --request POST \
--url https://api.rootfi.dev/accounting/accounts/all \
--header 'Content-Type: application/json' \
--header 'api_key: <api_key>' \
--data '{
"take": 10,
"skip": 0,
"orderBy": {
"nominal_code": "asc"
},
"filter": {
"name": {
"eq": "Rootfi Test"
}
}
}'
{
"data": {
"data": [
{
"rootfi_id": 123456,
"rootfi_company_id": 123456,
"rootfi_organisation_id": 1,
"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": "1234567890123456789",
"currency_id": "3770712000000000099",
"parent_account_id": null,
"nominal_code": "Rootfi 01",
"name": "Test Account",
"description": "Test Description",
"sub_category": "long_term_liability",
"current_balance": 12345,
"category": "LIABILITY",
"status": "ACTIVE",
"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
}
},
"parent_account": {}
}
],
"total_count": 0
},
"request_timestamp": "2021-09-28T15:00:00.000Z",
"response_timestamp": "2021-09-28T15:00:00.000Z",
"request_id": "7a1c0e42-9f85-4d6e-bb5d-358a72913c0b"
}
curl --request POST \
--url https://api.rootfi.dev/accounting/accounts/all \
--header 'Content-Type: application/json' \
--header 'api_key: <api_key>' \
--data '{
"take": 10,
"skip": 0,
"orderBy": {
"nominal_code": "asc"
},
"filter": {
"name": {
"eq": "Rootfi Test"
}
}
}'
The response is of type object
.