technician_shifts_update
Update technician shifts in ServiceTitan by modifying shift details such as type, title, note, active status, start/end times, and timesheet code ID. Ensures accurate scheduling and tracking.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
active | No | Active | |
end | No | End Time | |
id | Yes | Format - int64. | |
note | No | Note | |
shiftType | No | Shift Type | |
start | No | Start Time | |
technicianId | No | Technician ID | |
tenant | Yes | Format - int64. Tenant ID | |
timesheetCodeId | No | Timesheet Code ID | |
title | No | Title |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"active": {
"description": "Active",
"type": "boolean"
},
"end": {
"description": "End Time",
"type": "string"
},
"id": {
"description": "Format - int64.",
"type": "integer"
},
"note": {
"description": "Note",
"type": "string"
},
"shiftType": {
"description": "Shift Type"
},
"start": {
"description": "Start Time",
"type": "string"
},
"technicianId": {
"description": "Technician ID",
"type": "integer"
},
"tenant": {
"description": "Format - int64. Tenant ID",
"type": "integer"
},
"timesheetCodeId": {
"description": "Timesheet Code ID",
"type": "integer"
},
"title": {
"description": "Title",
"type": "string"
}
},
"required": [
"id",
"tenant"
],
"type": "object"
}