Skip to main content

Get House Account Balance

GET 

/api/customers/:customer/house-account

Return the customer's house-account balance owed, credit limit, and remaining headroom.

Required scope: customers:read

Grant this scope to your token under Settings → Developer → Personal Access Tokens.

Authentication: Requires Bearer token (PAT).

Response fields (under data):

  • customer_id (integer) — the customer.
  • house_account_enabled (boolean) — whether on-account charging is enabled for this customer.
  • balance (float) — the current balance owed on the account.
  • credit_limit (float | null) — the customer's credit limit, or null when uncapped.
  • available_credit (float | null) — remaining headroom (credit_limit − balance), or null when there is no limit.

Returns 200 with { data: { ... } }.

Request

Responses

OK

Response Headers
    Content-Type