client_specific_pricing_get_all_rate_sheets
Retrieve all client-specific rate sheets in ServiceTitan by specifying tenant ID, search term, or filters for active status, page number, and page size. Optimizes pricing data management.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
active | No | Values: [True, Any, False] | |
ids | No | List of ids | |
includeTotal | No | Include total count | |
page | No | Page number | |
pageSize | No | Page size | |
searchTerm | No | Search term | |
tenant | Yes | Tenant ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"active": {
"description": "Values: [True, Any, False]",
"type": [
"string",
"null"
]
},
"ids": {
"description": "List of ids",
"type": [
"string",
"null"
]
},
"includeTotal": {
"description": "Include total count",
"type": [
"boolean",
"null"
]
},
"page": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"description": "Page number"
},
"pageSize": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"description": "Page size"
},
"searchTerm": {
"description": "Search term",
"type": [
"string",
"null"
]
},
"tenant": {
"description": "Tenant ID",
"type": "integer"
}
},
"required": [
"tenant"
],
"type": "object"
}