Payments_UpdateCustomFields
Update custom fields for payments in ServiceTitan by specifying tenant ID and field data, enabling precise record customization via MCP.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| custom_fields | Yes | Custom fields to update | |
| tenant | Yes | Tenant ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"custom_fields": {
"additionalProperties": {},
"description": "Custom fields to update",
"type": "object"
},
"tenant": {
"description": "Tenant ID",
"type": "integer"
}
},
"required": [
"tenant",
"custom_fields"
],
"type": "object"
}