Skip to main content
POST
/
service
/
general-ledger
/
bill-payments
/
{bill_payment_id}
/
clear
curl -X POST https://kube.acho.io/service/general-ledger/bill-payments/BP-2024-001/clear \
  -H "Authorization: jwt YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"cleared_date": "2024-02-12"}'
{
  "bill_payment_id": "BP-2024-001",
  "status": "Cleared",
  "cleared_date": "2024-02-12",
  "cleared_at": "2024-02-15T10:00:00Z"
}

Request

Mark a bill payment as cleared for bank reconciliation purposes.

Headers

Authorization
string
required
JWT authentication token. Format: jwt YOUR_TOKEN
Content-Type
string
required
Must be application/json

Path Parameters

bill_payment_id
string
required
The payment ID

Body Parameters

cleared_date
string
required
Date the payment cleared the bank (YYYY-MM-DD)
curl -X POST https://kube.acho.io/service/general-ledger/bill-payments/BP-2024-001/clear \
  -H "Authorization: jwt YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"cleared_date": "2024-02-12"}'
{
  "bill_payment_id": "BP-2024-001",
  "status": "Cleared",
  "cleared_date": "2024-02-12",
  "cleared_at": "2024-02-15T10:00:00Z"
}