technicians_create
Enable AI assistants to create technicians in ServiceTitan by specifying the tenant ID, facilitating efficient workforce management.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
tenant | Yes | Format - int64. Tenant ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"tenant": {
"description": "Format - int64. Tenant ID",
"type": "integer"
}
},
"required": [
"tenant"
],
"type": "object"
}