installed_equipment_create
Create and manage installed equipment records in ServiceTitan. Track equipment details, warranties, and installation dates for efficient maintenance and inventory management.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| actualReplacementDate | No | Actual replacement date | |
| barcodeId | No | Barcode ID | |
| cost | No | Cost | |
| customerId | Yes | Customer ID | |
| equipmentId | Yes | Equipment ID | |
| installedOn | Yes | Date of installation | |
| invoiceItemId | No | Invoice Item ID | |
| locationId | Yes | Location ID | |
| manufacturer | No | Manufacturer | |
| manufacturerWarrantyEnd | No | Manufacturer warranty end date | |
| manufacturerWarrantyStart | No | Manufacturer warranty start date | |
| memo | No | Memo | |
| model | No | Model | |
| name | Yes | Name of the installed equipment | |
| predictedReplacementMonths | No | Predicted replacement months | |
| serialNumber | No | Serial number | |
| serviceProviderWarrantyEnd | No | Service provider warranty end date | |
| serviceProviderWarrantyStart | No | Service provider warranty start date | |
| tenant | Yes | Format - int64. Tenant ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"actualReplacementDate": {
"description": "Actual replacement date",
"type": "string"
},
"barcodeId": {
"description": "Barcode ID",
"type": "string"
},
"cost": {
"description": "Cost",
"type": "number"
},
"customerId": {
"description": "Customer ID",
"type": "integer"
},
"equipmentId": {
"description": "Equipment ID",
"type": "integer"
},
"installedOn": {
"description": "Date of installation",
"type": "string"
},
"invoiceItemId": {
"description": "Invoice Item ID",
"type": "integer"
},
"locationId": {
"description": "Location ID",
"type": "integer"
},
"manufacturer": {
"description": "Manufacturer",
"type": "string"
},
"manufacturerWarrantyEnd": {
"description": "Manufacturer warranty end date",
"type": "string"
},
"manufacturerWarrantyStart": {
"description": "Manufacturer warranty start date",
"type": "string"
},
"memo": {
"description": "Memo",
"type": "string"
},
"model": {
"description": "Model",
"type": "string"
},
"name": {
"description": "Name of the installed equipment",
"type": "string"
},
"predictedReplacementMonths": {
"description": "Predicted replacement months",
"type": "integer"
},
"serialNumber": {
"description": "Serial number",
"type": "string"
},
"serviceProviderWarrantyEnd": {
"description": "Service provider warranty end date",
"type": "string"
},
"serviceProviderWarrantyStart": {
"description": "Service provider warranty start date",
"type": "string"
},
"tenant": {
"description": "Format - int64. Tenant ID",
"type": "integer"
}
},
"required": [
"tenant",
"equipmentId",
"locationId",
"customerId",
"name",
"installedOn"
],
"type": "object"
}