PurchaseOrdersMarkup_Update
Update purchase order markup percentages in ServiceTitan by specifying tenant and order details. Adjust markup from one value to another to ensure accurate cost calculations.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| createdOn | No | ||
| from | No | ||
| id | Yes | Format - int64. | |
| modifiedOn | No | ||
| percent | No | ||
| tenant | Yes | Format - int64. Tenant ID | |
| to | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"createdOn": {
"type": "string"
},
"from": {
"type": "number"
},
"id": {
"description": "Format - int64.",
"type": "integer"
},
"modifiedOn": {
"type": "string"
},
"percent": {
"type": "number"
},
"tenant": {
"description": "Format - int64. Tenant ID",
"type": "integer"
},
"to": {
"type": "number"
}
},
"required": [
"id",
"tenant"
],
"type": "object"
}