warehouses_update
Update warehouse details in ServiceTitan by providing warehouse ID, tenant ID, and payload data via the MCP server.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | Format - int64. Warehouse Id | |
payload | No | The request body | |
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. Warehouse Id",
"type": "integer"
},
"payload": {
"additionalProperties": {},
"description": "The request body",
"type": "object"
},
"tenant": {
"description": "Format - int64. Tenant ID",
"type": "integer"
}
},
"required": [
"id",
"tenant"
],
"type": "object"
}