leads_create
Generate and manage leads within ServiceTitan by sending structured data through the MCP server, enabling streamlined customer acquisition and integration with API workflows.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
body | Yes | Request Body | |
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": "Request Body",
"properties": {},
"type": "object"
},
"tenant": {
"description": "Format - int64. Tenant ID",
"type": "integer"
}
},
"required": [
"tenant",
"body"
],
"type": "object"
}