activity_categories_get
Retrieve specific activity category details by providing a tenant ID and activity category ID using the ServiceTitan MCP Server API.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | The activity category ID | |
tenant | Yes | Tenant ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "The activity category ID",
"type": "integer"
},
"tenant": {
"description": "Tenant ID",
"type": "integer"
}
},
"required": [
"tenant",
"id"
],
"type": "object"
}