ReportCategoryReports_Get
Retrieve specific reports by category and report ID from the ServiceTitan API using the tenant ID for targeted data access.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
reportId | Yes | Format - int64. ID of report within the category | |
report_category | Yes | ID of category taken from the category list endpoint | |
tenant | Yes | Format - int64. Tenant ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"reportId": {
"description": "Format - int64. ID of report within the category ",
"type": "integer"
},
"report_category": {
"description": "ID of category taken from the category list endpoint ",
"type": "string"
},
"tenant": {
"description": "Format - int64. Tenant ID",
"type": "integer"
}
},
"required": [
"report_category",
"reportId",
"tenant"
],
"type": "object"
}