receipts_update_custom_fields
Update custom fields in receipts for a specific tenant using key-value pairs. Facilitates integration with the ServiceTitan API via MCP server.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
customFields | No | Custom fields to update. A map of key-value pairs. | |
tenant | Yes | Tenant ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"customFields": {
"additionalProperties": {},
"description": "Custom fields to update. A map of key-value pairs.",
"type": "object"
},
"tenant": {
"description": "Tenant ID",
"type": "integer"
}
},
"required": [
"tenant"
],
"type": "object"
}