payroll_adjustments_get
Retrieve payroll adjustment details by specifying the adjustment ID, tenant ID, and employee type (Technician or Employee) for accurate payroll management.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
employeeType | No | The employee type | |
id | Yes | The ID of payroll adjustment | |
tenant | Yes | Tenant ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"employeeType": {
"description": "The employee type",
"enum": [
"Technician",
"Employee"
],
"type": "string"
},
"id": {
"description": "The ID of payroll adjustment",
"type": "integer"
},
"tenant": {
"description": "Tenant ID",
"type": "integer"
}
},
"required": [
"id",
"tenant"
],
"type": "object"
}