equipment_update
Update equipment details in ServiceTitan by specifying the SKU ID, tenant ID, and payload data to ensure accurate and current equipment records.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Format - int64. Unique id for the SKU is modified | |
| payload | No | The data to update the equipment with | |
| 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. Unique id for the SKU is modified",
"type": "integer"
},
"payload": {
"additionalProperties": {},
"description": "The data to update the equipment with",
"type": "object"
},
"tenant": {
"description": "Format - int64. Tenant ID",
"type": "integer"
}
},
"required": [
"id",
"tenant"
],
"type": "object"
}