input UpdateBillAdHocChargeInput
Fields
| Field | Type | Description |
|---|---|---|
customer_account_id | String | Use this when you are a 3PL acting on behalf of one of your customers |
adhoc_charge_id | String! | The ad-hoc charge ID to update |
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 |
Referenced By
- bill_update_ad_hoc_charge Mutation
Example
{
"customer_account_id": "abc123",
"adhoc_charge_id": "abc123",
"name": "abc123",
"description": "abc123",
"occurred_at": "abc123",
"labor_unit_id": "abc123",
"unit_amount": "abc123",
"rate": "abc123"
}