DiscountAndFees_Delete
Remove discounts and fees from ServiceTitan by deleting specific SKUs using tenant and SKU ID, ensuring accurate billing and service management.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | Id of the SKU you are deleting | |
tenant | Yes | Tenant ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "Id of the SKU you are deleting",
"type": "integer"
},
"tenant": {
"description": "Tenant ID",
"type": "integer"
}
},
"required": [
"tenant",
"id"
],
"type": "object"
}