projects_get
Retrieve project details from ServiceTitan API using tenant and project IDs, optionally including external data via application GUID for enhanced insights.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
externalDataApplicationGuid | No | Format - guid. If this guid is provided, external data corresponding to this application guid will be returned. | |
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. If this guid is provided, external data corresponding to\nthis application guid will be returned.",
"format": "uuid",
"type": "string"
},
"id": {
"description": "Format - int64.",
"type": "integer"
},
"tenant": {
"description": "Format - int64. Tenant ID",
"type": "integer"
}
},
"required": [
"id",
"tenant"
],
"type": "object"
}