estimates_delete_item
Remove specific items from estimates in ServiceTitan by providing the estimate ID, item ID, and tenant ID to ensure accurate and updated business records.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | Format - int64. | |
itemId | Yes | Format - int64. | |
tenant | Yes | Format - int64. Tenant ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "Format - int64.",
"type": "integer"
},
"itemId": {
"description": "Format - int64.",
"type": "integer"
},
"tenant": {
"description": "Format - int64. Tenant ID",
"type": "integer"
}
},
"required": [
"id",
"itemId",
"tenant"
],
"type": "object"
}