materialsmarkup_getlist
Retrieve a paginated list of material markups by tenant ID using the MCP server to interact with the ServiceTitan API. Specify page and pageSize for precise results.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
page | No | Format - int32. | |
pageSize | No | Format - int32. | |
tenant | Yes | Format - int64. Tenant ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"page": {
"description": "Format - int32.",
"type": "integer"
},
"pageSize": {
"description": "Format - int32.",
"type": "integer"
},
"tenant": {
"description": "Format - int64. Tenant ID",
"type": "integer"
}
},
"required": [
"tenant"
],
"type": "object"
}