glaccounts_createaccount
Create and configure General Ledger (GL) accounts in ServiceTitan by specifying details like name, number, type, and subtype, ensuring accurate financial tracking.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
active | No | Whether the GL Account is active | |
description | No | The description of the GL Account | |
isIntacctBankAccount | No | Whether the GL Account is an Intacct bank account | |
isIntacctGroup | No | Whether the GL Account is an Intacct group | |
name | Yes | The name of the GL Account | |
number | Yes | The number of the GL Account | |
subtype | Yes | The subtype of the GL Account | |
tenant | Yes | Tenant ID | |
type | Yes | The type of the GL Account |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"active": {
"default": true,
"description": "Whether the GL Account is active",
"type": "boolean"
},
"description": {
"description": "The description of the GL Account",
"type": "string"
},
"isIntacctBankAccount": {
"default": false,
"description": "Whether the GL Account is an Intacct bank account",
"type": "boolean"
},
"isIntacctGroup": {
"default": false,
"description": "Whether the GL Account is an Intacct group",
"type": "boolean"
},
"name": {
"description": "The name of the GL Account",
"type": "string"
},
"number": {
"description": "The number of the GL Account",
"type": "string"
},
"subtype": {
"description": "The subtype of the GL Account",
"type": "string"
},
"tenant": {
"description": "Tenant ID",
"type": "integer"
},
"type": {
"description": "The type of the GL Account",
"type": "string"
}
},
"required": [
"tenant",
"name",
"number",
"type",
"subtype"
],
"type": "object"
}