PurchaseOrdersMarkup_Create
Apply markup percentages to purchase orders by defining a range and percentage value for specified tenants using the ServiceTitan MCP Server.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
from | No | Starting value for the markup range | |
percent | No | Markup percentage to apply | |
tenant | Yes | Format - int64. Tenant ID | |
to | No | Ending value for the markup range |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"from": {
"description": "Starting value for the markup range",
"type": "number"
},
"percent": {
"description": "Markup percentage to apply",
"type": "number"
},
"tenant": {
"description": "Format - int64. Tenant ID",
"type": "integer"
},
"to": {
"description": "Ending value for the markup range",
"type": "number"
}
},
"required": [
"tenant"
],
"type": "object"
}