technicians_update
Update technician details in ServiceTitan by providing a unique ID, tenant ID, and payload data through the MCP server integration.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | Format - int64. | |
payload | No | Payload for the update | |
tenant | Yes | Format - int64. Tenant ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "Format - int64.",
"type": "integer"
},
"payload": {
"additionalProperties": {},
"description": "Payload for the update",
"type": "object"
},
"tenant": {
"description": "Format - int64. Tenant ID",
"type": "integer"
}
},
"required": [
"id",
"tenant"
],
"type": "object"
}