employees_create
Create employee profiles in ServiceTitan by specifying tenant ID and optional request body. Streamline workforce management with this MCP server tool.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
body | No | Request body (optional) | |
tenant | Yes | Format - int64. Tenant ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"description": "Request body (optional)",
"properties": {},
"type": "object"
},
"tenant": {
"description": "Format - int64. Tenant ID",
"type": "integer"
}
},
"required": [
"tenant"
],
"type": "object"
}