business_units_get
Retrieve business unit details from the ServiceTitan API using tenant ID and unit ID. Enables AI assistants to access structured data for integration or analysis.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
externalDataApplicationGuid | No | Format - guid. | |
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": {
"externalDataApplicationGuid": {
"description": "Format - guid.",
"format": "uuid",
"type": "string"
},
"id": {
"description": "Format - int64.",
"type": "integer"
},
"tenant": {
"description": "Format - int64. Tenant ID",
"type": "integer"
}
},
"required": [
"id",
"tenant"
],
"type": "object"
}