invoices_update_custom_fields
Update custom fields for invoices in ServiceTitan by specifying tenant ID and custom field data. Integrates via MCP server for API interaction.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
custom_fields | Yes | Custom fields to update for the invoice | |
tenant | Yes | Format - int64. 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 for the invoice",
"type": "object"
},
"tenant": {
"description": "Format - int64. Tenant ID",
"type": "integer"
}
},
"required": [
"tenant",
"custom_fields"
],
"type": "object"
}