NonJobAppointments_Update
Update non-job appointments in ServiceTitan by modifying details such as technician, start time, duration, and visibility flags for dispatch boards and technician schedules.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
active | No | Active appointment flag | |
allDay | No | All-day appointment flag | |
clearDispatchBoard | No | Clear dispatch board flag | |
clearTechnicianView | No | Clear technician view flag | |
duration | No | Appointment duration | |
id | Yes | Non-Job Appointment ID | |
name | No | Appointment name | |
removeTechnicianFromCapacityPlanning | No | Remove technician from capacity planning flag | |
showOnTechnicianSchedule | No | Show on technician schedule flag | |
start | No | Appointment start time | |
summary | No | Appointment summary | |
technicianId | No | Technician ID | |
tenant | Yes | Tenant ID | |
timesheetCodeId | No | Timesheet code ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"active": {
"description": "Active appointment flag",
"type": "boolean"
},
"allDay": {
"description": "All-day appointment flag",
"type": "boolean"
},
"clearDispatchBoard": {
"description": "Clear dispatch board flag",
"type": "boolean"
},
"clearTechnicianView": {
"description": "Clear technician view flag",
"type": "boolean"
},
"duration": {
"description": "Appointment duration",
"type": "string"
},
"id": {
"description": "Non-Job Appointment ID",
"type": "integer"
},
"name": {
"description": "Appointment name",
"type": "string"
},
"removeTechnicianFromCapacityPlanning": {
"description": "Remove technician from capacity planning flag",
"type": "boolean"
},
"showOnTechnicianSchedule": {
"description": "Show on technician schedule flag",
"type": "boolean"
},
"start": {
"description": "Appointment start time",
"type": "string"
},
"summary": {
"description": "Appointment summary",
"type": "string"
},
"technicianId": {
"description": "Technician ID",
"type": "integer"
},
"tenant": {
"description": "Tenant ID",
"type": "integer"
},
"timesheetCodeId": {
"description": "Timesheet code ID",
"type": "integer"
}
},
"required": [
"tenant",
"id"
],
"type": "object"
}