Skip to main content
GET
/
service
/
general-ledger
/
accounts
/
{account_id}
curl -X GET https://kube.acho.io/service/general-ledger/accounts/11100 \
  -H "Authorization: jwt YOUR_TOKEN"
{
  "account_id": "11100",
  "account_number": 11100,
  "account_name": "Cash - Operating",
  "account_type": "Asset",
  "normal_balance": "debit",
  "currency": "USD",
  "balance": 50000.00,
  "opening_balance": 45000.00,
  "is_summary": false,
  "is_inactive": false,
  "created_at": "2024-01-01T00:00:00Z",
  "updated_at": "2024-01-15T10:30:00Z"
}

Request

Retrieve details for a specific GL account.

Headers

Authorization
string
required
JWT authentication token. Format: jwt YOUR_TOKEN

Path Parameters

account_id
string
required
The unique identifier of the account to retrieve
curl -X GET https://kube.acho.io/service/general-ledger/accounts/11100 \
  -H "Authorization: jwt YOUR_TOKEN"
{
  "account_id": "11100",
  "account_number": 11100,
  "account_name": "Cash - Operating",
  "account_type": "Asset",
  "normal_balance": "debit",
  "currency": "USD",
  "balance": 50000.00,
  "opening_balance": 45000.00,
  "is_summary": false,
  "is_inactive": false,
  "created_at": "2024-01-01T00:00:00Z",
  "updated_at": "2024-01-15T10:30:00Z"
}