PayrollSettings_GetTechnicianPayrollSettings
Retrieve payroll settings for a specific technician in ServiceTitan using their ID and tenant details, enabling accurate payroll management and compliance.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| 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": {
"technician": {
"description": "Format - int64. The technician ID",
"type": "integer"
},
"tenant": {
"description": "Format - int64. Tenant ID",
"type": "integer"
}
},
"required": [
"technician",
"tenant"
],
"type": "object"
}