Bookings›Create a job request (business actor)
Create a job request (business actor)
Books a field-service job — the work order that enters the dispatch & scheduling pipeline. Send the customer's UUID plus requested `job_dates` (date + morning/afternoon/evening periods, ideally offered from GET /job-requests/booking-windows), optional `job_type_id` (service catalog), `skill_ids` (required technician qualifications) and a free-text description. Quoting, technician/crew assignment and completion then advance the work order through the business's workflow.
Arguments
X-Timezonestringheaderoptional
Customer IANA timezone
customer_idstringbodyrequired
UUID of an existing customer of this business to book the job for. Required.
descriptionstringbodyoptional
Free-text description of the work requested. Optional; max 2000 chars.
▾job_datesarray<object>bodyrequired
Requested date(s) + period(s) the customer wants the job. At least one, up to 12.
job_type_idstringbodyoptional
UUID of the job type to classify this job. Optional; null leaves the job unclassified.
skill_idsarray<string>bodyoptional
UUIDs of the skills the customer desires for this job. Optional; up to 20.
POST/v1/job-requests
curl -X POST "https://api.crisphive.com/v1/job-requests" \ -H "Authorization: Bearer chsk_test_4eC8xQ9mZ2pL7Ka0rT" \ -H "Content-Type: application/json" \ -d '{ "customer_id": "9b2f6c3e-1a4d-4f0a-8f2e-7c5d1b3a9e01", "description": "Please call on arrival.", "job_dates": [ { "date": "2026-07-02T09:30:00Z", "periods": [ { "business_view": [], "period": "morning" } ] } ], "job_type_id": "9b2f6c3e-1a4d-4f0a-8f2e-7c5d1b3a9e01", "skill_ids": [ "9b2f6c3e-1a4d-4f0a-8f2e-7c5d1b3a9e01" ] }'
Request body
{
"customer_id": ,
"description": ,
"job_dates": [
{
"date": ,
"periods": [
{
"business_view": [
],
"period":
}
]
}
],
"job_type_id": ,
"skill_ids": [
]
}
Bearer