object Bill

Fields

FieldTypeDescription
idString

Public API ID for this bill.

legacy_idBigInt

Numeric legacy ID for this identifiable; use only where legacy IDs are required.

statusString

Current status; use the API status values returned by this field when filtering or updating.

customer_nameString

Customer name for this bill.

profile_nameString

Profile name for this bill.

created_atISODateTime

Created at as an ISO-8601 datetime, returned in UTC unless otherwise noted.

due_dateISODateTime

Due date in ISO-8601 date or datetime format, returned in UTC when time is included.

amountMoney

Monetary amount as a decimal value in the record currency; not cents.

totalsFeeCategoryTotalConnection

Totals for this bill.

ArgumentTypeRequiredDefaultDescription
sortStringNo
beforeStringNo
afterStringNo
firstIntNo
lastIntNo
bill_exportsBillExportsConnection

Bill exports for this bill.

ArgumentTypeRequiredDefaultDescription
sortStringNo
beforeStringNo
afterStringNo
firstIntNo
lastIntNo
billing_periodBillingPeriod

Billing period for this bill.

billing_frequencyString

Billing frequency for this bill.

Referenced By

Example

{
  "id": "QmlsbDoxMjM0",
  "legacy_id": 1234,
  "status": "pending",
  "customer_name": "July Fulfillment Fees",
  "profile_name": "default",
  "created_at": "2026-07-09T15:30:00Z",
  "due_date": "2026-07-09T15:30:00Z",
  "amount": "19.99",
  "totals": [{labor_unit: "HOURS", unit_rate: 19.99, quantity: 2}],
  "bill_exports": [{id: "QmlsbEV4cG9ydHM6MTIzNA=="}],
  "billing_period": {id: "QmlsbGluZ1BlcmlvZDoxMjM0"},
  "billing_frequency": "monthly"
}