services_get
Retrieve detailed service information from the ServiceTitan API using tenant ID and service ID. Designed for integration with AI assistants via the MCP server.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
externalDataApplicationGuid | No | Format - guid. Items that are created with a specific guid, could be fetched/updated/removed only when the same application guid is provided. | |
id | Yes | Format - int64. The id of the service you are requesting | |
tenant | Yes | Format - int64. Tenant ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"externalDataApplicationGuid": {
"description": "Format - guid. Items that are created with a specific guid, could be fetched/updated/removed\nonly when the same application guid is provided.",
"format": "uuid",
"type": "string"
},
"id": {
"description": "Format - int64. The id of the service you are requesting",
"type": "integer"
},
"tenant": {
"description": "Format - int64. Tenant ID",
"type": "integer"
}
},
"required": [
"id",
"tenant"
],
"type": "object"
}