customer_memberships_create
Create customer memberships in ServiceTitan by specifying tenant ID and payload data, facilitating streamlined client management via the MCP server.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
payload | No | Request Payload | |
tenant | Yes | Tenant ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"payload": {
"additionalProperties": false,
"description": "Request Payload",
"properties": {},
"type": "object"
},
"tenant": {
"description": "Tenant ID",
"type": "integer"
}
},
"required": [
"tenant"
],
"type": "object"
}