GlAccounts_GetAccount
Retrieve General Ledger account details by specifying accountId and tenant ID using the ServiceTitan API. Facilitates accurate financial data access.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
accountId | Yes | Format - int64. Long integer id of the General Ledger account to be retrieved | |
tenant | Yes | Format - int64. Tenant ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"accountId": {
"description": "Format - int64. Long integer id of the General Ledger account to be retrieved",
"type": "integer"
},
"tenant": {
"description": "Format - int64. Tenant ID",
"type": "integer"
}
},
"required": [
"accountId",
"tenant"
],
"type": "object"
}