journal_entries_sync_update
Sync and update journal entries in ServiceTitan by providing the Journal Entry ID and Tenant ID. Ensures accurate and timely financial record management.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | The Journal Entry ID (UUID) | |
tenant | Yes | The Tenant ID (int64) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "The Journal Entry ID (UUID)",
"format": "uuid",
"type": "string"
},
"tenant": {
"description": "The Tenant ID (int64)",
"type": "integer"
}
},
"required": [
"id",
"tenant"
],
"type": "object"
}