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 when the charge occurred |
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": "abc123",
"warehouse_id": "abc123",
"name": "abc123",
"description": "abc123",
"occurred_at": "abc123",
"labor_unit_id": "abc123",
"unit_amount": "abc123",
"rate": "abc123",
"bill_id": "abc123"
}