PayrollSettings_UpdateEmployeePayrollSettings
Modify employee payroll settings in ServiceTitan by providing employee ID, tenant ID, and updated payload. Utilizes the MCP server for API integration.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
employee | Yes | Format - int64. The employee ID | |
payload | Yes | Request Body | |
tenant | Yes | Format - int64. Tenant ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"employee": {
"description": "Format - int64. The employee ID",
"type": "integer"
},
"payload": {
"additionalProperties": {},
"description": "Request Body",
"type": "object"
},
"tenant": {
"description": "Format - int64. Tenant ID",
"type": "integer"
}
},
"required": [
"employee",
"tenant",
"payload"
],
"type": "object"
}