inventory_bills_update_custom_fields
Update custom fields in inventory bills by specifying tenant ID and custom field data using the ServiceTitan MCP Server.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
customFields | Yes | Custom fields to update | |
tenant | Yes | Format - int64. Tenant ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"customFields": {
"additionalProperties": {},
"description": "Custom fields to update",
"type": "object"
},
"tenant": {
"description": "Format - int64. Tenant ID",
"type": "integer"
}
},
"required": [
"tenant",
"customFields"
],
"type": "object"
}