materialsmarkup_update
Update material markup ranges and percentages in ServiceTitan by specifying tenant ID, markup ID, range values, and markup percentage.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
from | No | Starting value for the markup range | |
id | Yes | Format - int64. Materials markup id | |
percent | No | Markup percentage | |
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"
},
"id": {
"description": "Format - int64. Materials markup id",
"type": "integer"
},
"percent": {
"description": "Markup percentage",
"type": "number"
},
"tenant": {
"description": "Format - int64. Tenant ID",
"type": "integer"
},
"to": {
"description": "Ending value for the markup range",
"type": "number"
}
},
"required": [
"tenant",
"id"
],
"type": "object"
}