installed_equipment_update
Update installed equipment details in ServiceTitan, including warranty, location, and replacement dates, to maintain accurate records and streamline maintenance operations.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| active | No | ||
| actualReplacementDate | No | ||
| barcodeId | No | ||
| cost | No | ||
| customerId | No | ||
| equipmentId | No | ||
| id | Yes | Format - int64. | |
| installedOn | No | ||
| invoiceItemId | No | ||
| locationId | No | ||
| manufacturer | No | ||
| manufacturerWarrantyEnd | No | ||
| manufacturerWarrantyStart | No | ||
| memo | No | ||
| model | No | ||
| name | No | ||
| predictedReplacementDate | No | ||
| predictedReplacementMonths | No | ||
| serialNumber | No | ||
| serviceProviderWarrantyEnd | No | ||
| serviceProviderWarrantyStart | No | ||
| tenant | Yes | Format - int64. Tenant ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"active": {
"type": "boolean"
},
"actualReplacementDate": {
"type": "string"
},
"barcodeId": {
"type": "string"
},
"cost": {
"type": "number"
},
"customerId": {
"type": "integer"
},
"equipmentId": {
"type": "integer"
},
"id": {
"description": "Format - int64.",
"type": "integer"
},
"installedOn": {
"type": "string"
},
"invoiceItemId": {
"type": "integer"
},
"locationId": {
"type": "integer"
},
"manufacturer": {
"type": "string"
},
"manufacturerWarrantyEnd": {
"type": "string"
},
"manufacturerWarrantyStart": {
"type": "string"
},
"memo": {
"type": "string"
},
"model": {
"type": "string"
},
"name": {
"type": "string"
},
"predictedReplacementDate": {
"type": "string"
},
"predictedReplacementMonths": {
"type": "integer"
},
"serialNumber": {
"type": "string"
},
"serviceProviderWarrantyEnd": {
"type": "string"
},
"serviceProviderWarrantyStart": {
"type": "string"
},
"tenant": {
"description": "Format - int64. Tenant ID",
"type": "integer"
}
},
"required": [
"id",
"tenant"
],
"type": "object"
}