input AddBillAdHocChargeInput
Fields
| Field | Type | Description |
|---|---|---|
customer_account_id | String! | The customer account to charge. |
warehouse_id | String | Warehouse ID to disambiguate when multiple business relationships exist. |
name | String! | Name of the ad-hoc charge. |
description | String! | Description of the ad-hoc charge. |
occurred_at | ISODateTime! | Date and time when the charge occurred, in ISO-8601 format. |
labor_unit_id | String! | Labor unit ID for the charge. |
unit_amount | Decimal! | Number of units. |
rate | Decimal! | Rate per unit. |
bill_id | String | Optional bill ID to attach the charge to an existing bill. |
Referenced By
- bill_add_ad_hoc_charge Mutation
Example
{
"customer_account_id": "QWNjb3VudDoxMjM0",
"warehouse_id": "V2FyZWhvdXNlOjEyMzQ=",
"name": "July Fulfillment Fees",
"description": "Customer requested expedited handling.",
"occurred_at": "2026-07-09T15:30:00Z",
"labor_unit_id": "Q2hhcmdlOjEyMzQ=",
"unit_amount": 2,
"rate": 19.99,
"bill_id": "Q2hhcmdlOjEyMzQ="
}