Skip to main content
GET
/
service
/
general-ledger
/
reconciliations
/
{reconciliation_id}
curl -X GET https://kube.acho.io/service/general-ledger/reconciliations/recon-2024-001 \
  -H "Authorization: jwt YOUR_TOKEN"
{
  "reconciliation_id": "recon-2024-001",
  "bank_account_id": "a3-bank-account-xxx",
  "bank_account_name": "Operating Account",
  "statement_date": "2024-01-31",
  "statement_beginning_balance": 45000.00,
  "statement_ending_balance": 50000.00,
  "gl_beginning_balance": 45000.00,
  "gl_ending_balance": 52000.00,
  "cleared_balance": 48000.00,
  "uncleared_balance": 4000.00,
  "bank_adjustments": 0,
  "book_adjustments": 0,
  "difference": 2000.00,
  "posting_period_id": "a3-period-xxx",
  "currency": "USD",
  "status": "In Progress",
  "memo": "January 2024 Bank Reconciliation",
  "created_at": "2024-02-01T10:00:00Z",
  "created_by": "user-123",
  "started_at": "2024-02-01T10:30:00Z",
  "started_by": "user-123"
}

Request

Get details of a specific reconciliation session.

Path Parameters

reconciliation_id
string
required
The reconciliation session ID
curl -X GET https://kube.acho.io/service/general-ledger/reconciliations/recon-2024-001 \
  -H "Authorization: jwt YOUR_TOKEN"
{
  "reconciliation_id": "recon-2024-001",
  "bank_account_id": "a3-bank-account-xxx",
  "bank_account_name": "Operating Account",
  "statement_date": "2024-01-31",
  "statement_beginning_balance": 45000.00,
  "statement_ending_balance": 50000.00,
  "gl_beginning_balance": 45000.00,
  "gl_ending_balance": 52000.00,
  "cleared_balance": 48000.00,
  "uncleared_balance": 4000.00,
  "bank_adjustments": 0,
  "book_adjustments": 0,
  "difference": 2000.00,
  "posting_period_id": "a3-period-xxx",
  "currency": "USD",
  "status": "In Progress",
  "memo": "January 2024 Bank Reconciliation",
  "created_at": "2024-02-01T10:00:00Z",
  "created_by": "user-123",
  "started_at": "2024-02-01T10:30:00Z",
  "started_by": "user-123"
}