GrossPayItems_Create
Create and manage gross pay items in ServiceTitan by defining tenant ID, name, amount, and active status for accurate payroll tracking.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
amount | Yes | The amount for the gross pay item | |
description | No | A description of the gross pay item | |
is_active | No | Whether the gross pay item is active | |
name | Yes | The name of the gross pay item | |
tenant | Yes | Tenant ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"amount": {
"description": "The amount for the gross pay item",
"type": "number"
},
"description": {
"description": "A description of the gross pay item",
"type": "string"
},
"is_active": {
"default": true,
"description": "Whether the gross pay item is active",
"type": "boolean"
},
"name": {
"description": "The name of the gross pay item",
"type": "string"
},
"tenant": {
"description": "Tenant ID",
"type": "integer"
}
},
"required": [
"tenant",
"name",
"amount"
],
"type": "object"
}