transfers_update_custom_fields
Update custom fields for a specific tenant in ServiceTitan using the MCP server to manage and modify data efficiently.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
custom_fields | Yes | Custom fields to update | |
tenant | Yes | Tenant ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"custom_fields": {
"additionalProperties": {},
"description": "Custom fields to update",
"type": "object"
},
"tenant": {
"description": "Tenant ID",
"type": "integer"
}
},
"required": [
"tenant",
"custom_fields"
],
"type": "object"
}