PayrollSettings_UpdateTechnicianPayrollSettings
Update payroll settings for technicians in ServiceTitan by specifying technician ID, tenant ID, and employee ID to ensure accurate payroll configurations.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| employeeId | No | Employee ID | |
| technician | Yes | Format - int64. The technician ID | |
| tenant | Yes | Format - int64. Tenant ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"employeeId": {
"description": "Employee ID",
"type": "integer"
},
"technician": {
"description": "Format - int64. The technician ID",
"type": "integer"
},
"tenant": {
"description": "Format - int64. Tenant ID",
"type": "integer"
}
},
"required": [
"technician",
"tenant"
],
"type": "object"
}