Skip to main content
PUT
/
service
/
general-ledger
/
reconciliations
/
{reconciliation_id}
curl -X PUT https://kube.acho.io/service/general-ledger/reconciliations/recon-2024-001 \
  -H "Authorization: jwt YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "statementEndingBalance": 50500.00,
    "bankAdjustments": 100.00,
    "bookAdjustments": -50.00,
    "memo": "Updated reconciliation memo"
  }'
{
  "reconciliation_id": "recon-2024-001",
  "statement_ending_balance": 50500.00,
  "bank_adjustments": 100.00,
  "book_adjustments": -50.00,
  "memo": "Updated reconciliation memo",
  "updated_at": "2024-02-01T11:00:00Z",
  "updated_by": "user-123"
}

Request

Update reconciliation session details including adjustments.

Path Parameters

reconciliation_id
string
required
The reconciliation session ID

Body Parameters

statementEndingBalance
number
Updated ending balance from bank statement
bankAdjustments
number
Bank adjustment amount
bookAdjustments
number
Book adjustment amount
memo
string
Updated memo
curl -X PUT https://kube.acho.io/service/general-ledger/reconciliations/recon-2024-001 \
  -H "Authorization: jwt YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "statementEndingBalance": 50500.00,
    "bankAdjustments": 100.00,
    "bookAdjustments": -50.00,
    "memo": "Updated reconciliation memo"
  }'
{
  "reconciliation_id": "recon-2024-001",
  "statement_ending_balance": 50500.00,
  "bank_adjustments": 100.00,
  "book_adjustments": -50.00,
  "memo": "Updated reconciliation memo",
  "updated_at": "2024-02-01T11:00:00Z",
  "updated_by": "user-123"
}