PayrollAdjustments_Create
Create payroll adjustments in ServiceTitan by specifying tenant ID and request body to modify employee payroll records directly via the API.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
requestBody | Yes | Request body for creating payroll adjustments | |
tenant | Yes | Format - int64. Tenant ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"requestBody": {
"additionalProperties": {},
"description": "Request body for creating payroll adjustments",
"type": "object"
},
"tenant": {
"description": "Format - int64. Tenant ID",
"type": "integer"
}
},
"required": [
"tenant",
"requestBody"
],
"type": "object"
}