Skip to main content
GET
/
service
/
general-ledger
/
bill-payments
/
{bill_payment_id}
curl -X GET https://kube.acho.io/service/general-ledger/bill-payments/BP-2024-001 \
  -H "Authorization: jwt YOUR_TOKEN"
{
  "bill_payment_id": "BP-2024-001",
  "vendor_id": "a3-vendor-xxx",
  "vendor_name": "Office Supplies Inc",
  "account_id": "a3-cash-account-xxx",
  "account_name": "Cash - Operating",
  "ap_account_id": "a3-ap-account-xxx",
  "tran_date": "2024-02-10",
  "posting_period_id": "a3-period-xxx",
  "total": 1000,
  "currency": "USD",
  "exchange_rate": 1.0,
  "memo": "Payment for BILL-2024-001",
  "status": "Cleared",
  "cleared_date": "2024-02-12",
  "created_at": "2024-02-10T10:00:00Z"
}

Request

Retrieve details for a specific bill payment.

Headers

Authorization
string
required
JWT authentication token. Format: jwt YOUR_TOKEN

Path Parameters

bill_payment_id
string
required
The unique identifier of the bill payment
curl -X GET https://kube.acho.io/service/general-ledger/bill-payments/BP-2024-001 \
  -H "Authorization: jwt YOUR_TOKEN"
{
  "bill_payment_id": "BP-2024-001",
  "vendor_id": "a3-vendor-xxx",
  "vendor_name": "Office Supplies Inc",
  "account_id": "a3-cash-account-xxx",
  "account_name": "Cash - Operating",
  "ap_account_id": "a3-ap-account-xxx",
  "tran_date": "2024-02-10",
  "posting_period_id": "a3-period-xxx",
  "total": 1000,
  "currency": "USD",
  "exchange_rate": 1.0,
  "memo": "Payment for BILL-2024-001",
  "status": "Cleared",
  "cleared_date": "2024-02-12",
  "created_at": "2024-02-10T10:00:00Z"
}