leads_update
Update lead details in ServiceTitan by providing the lead ID, tenant ID, and request body through the MCP server to automate data management tasks.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
body | No | The request body. | |
id | Yes | Format - int64. | |
tenant | Yes | Format - int64. Tenant ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": true,
"description": "The request body.",
"properties": {},
"type": "object"
},
"id": {
"description": "Format - int64.",
"type": "integer"
},
"tenant": {
"description": "Format - int64. Tenant ID",
"type": "integer"
}
},
"required": [
"id",
"tenant"
],
"type": "object"
}