transfers_update
Update transfer details in ServiceTitan by specifying the transfer ID, tenant ID, and payload. Facilitates efficient data management via the ServiceTitan MCP Server for accurate record-keeping.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | Format - int64. Transfer Id | |
payload | No | Payload to update transfer | |
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. Transfer Id",
"type": "integer"
},
"payload": {
"additionalProperties": {},
"description": "Payload to update transfer",
"type": "object"
},
"tenant": {
"description": "Format - int64. Tenant ID",
"type": "integer"
}
},
"required": [
"id",
"tenant"
],
"type": "object"
}