curl --location --globoff --request PUT 'https://connect.dispatchable.com/jobs/api/v1/clientJobs/{{client_job_uuid}}' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"title": "Install New AC Unit - Updated",
"status": "scheduled",
"priority": "high",
"schedule_start_date": "2026-03-11",
"schedule_start_time": "10:00:00",
"schedule_end_time": "01:00:00",
"line_items": [
{
"name": "Labor",
"description": "Install labor updated",
"quantity": 1,
"unit_cost": 300,
"unit_price": 600,
"is_taxable": false,
"tax_rate": 0
}
]
}'