GET
request to retrieve a list of all ledgers from the server. It allows users to fetch details of available ledgers, which can be used for financial transactions, record-keeping, and reporting purposes.ApiKey: ********************
curl --location --request GET 'https://app.hisabkitab.co/third-party/ledgers?limit=25&skip=10' \
--header 'ApiKey;'
{
"data": [
{
"id": 1,
"name": "M/S HINDUSTAN COPPER LTD",
"group_name": "Customers",
"opening_balance": 0,
"opening_balance_type": 1,
"closing_balance": 0,
"closing_balance_type": 1,
"is_default": false
},
{
"id": 2,
"name": "sales",
"group_name": "Expense",
"opening_balance": 10000,
"opening_balance_type": 1,
"closing_balance": 9600,
"closing_balance_type": 1,
"is_default": false
}
],
"success": true,
"message": "Ledgers Retrieved Successfully."
}