receipts_cancelreceipts
Cancel specific receipts in ServiceTitan by providing the tenant ID and receipt ID, ensuring accurate transaction management and record updates.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | Receipt ID | |
tenant | Yes | Tenant ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "Receipt ID",
"type": "integer"
},
"tenant": {
"description": "Tenant ID",
"type": "integer"
}
},
"required": [
"tenant",
"id"
],
"type": "object"
}