Create Job
create_jobCreate a service job in Service Fusion by providing customer name, category, and status. Returns the job record with its assigned number.
Instructions
Create a new service job in Service Fusion. Requires an exact customer name (use search_customers to find it), a category (use get_job_categories or try 'Commercial Service', 'Residential Service', etc.), and a status (use get_job_statuses or try 'Scheduled', 'Confirmed', etc.). Returns the created job record with its assigned job number.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| customer_name | Yes | Exact customer name as it appears in Service Fusion. Use search_customers to find the correct name. | |
| category | Yes | Job category — must be an exact match (e.g., 'Commercial Service', 'Residential Service', 'Commercial Install', 'Residential Install', 'Commercial Maintenance', 'Residential Maintenance'). | |
| status | Yes | Job status — must be an exact match (e.g., 'Scheduled', 'Confirmed', 'Unscheduled'). Use get_job_statuses for the full list. | |
| description | No | Job description / work to be performed. | |
| start_date | No | Scheduled start date/time (ISO 8601: YYYY-MM-DDTHH:MM:SS or YYYY-MM-DD). | |
| end_date | No | Scheduled end date/time (ISO 8601). | |
| source | No | Lead source (exact match). Use get_sources for valid values. | |
| priority | No | Job priority (e.g., 'Normal', 'High', 'Emergency'). Default: 'Normal'. | |
| contact_first_name | No | On-site contact first name (overrides customer default). | |
| contact_last_name | No | On-site contact last name (overrides customer default). | |
| street_1 | No | Job site street address (overrides customer default). | |
| city | No | Job site city (overrides customer default). | |
| state_prov | No | Job site state/province (overrides customer default). | |
| postal_code | No | Job site postal code (overrides customer default). | |
| tech_notes | No | Internal notes visible to technicians. | |
| note_to_customer | No | Notes visible to the customer. | |
| po_number | No | Customer purchase order number. | |
| payment_type | No | Payment type (e.g., 'Check', 'Credit Card'). | |
| called_in_by | No | Name of person who called in the job. |