Updates the employee's recurring statutory contribution adjustment with the specified ID.
PUT https://apimy.yourpayroll.io/api/v2/business/{businessId}/employee/{employeeId}/statutorycontributionadjustment/{id}
Parameter name | Value | Description | Additional |
---|---|---|---|
id | int32 | Required | |
businessId | string | Required | |
employeeId | string | Required |
The request body takes a complete EmployeeRecurringStatutoryContributionAdjustmentModel resource, containing the following writable properties:
{
"amount": "double",
"contributionType": "string",
"employeeId": "int32",
"expiryDate": "date-time",
"fromDate": "date-time",
"id": "int32",
"isActive": "boolean",
"maximumAmountPaid": "double",
"notes": "string",
"totalAmountPaid": "double",
"type": "string"
}
Name | Type | Description |
---|---|---|
amount | double | Decimal |
contributionType | string |
StatutoryContributionType
Possible values are:
|
employeeId | int32 | Int32 |
expiryDate | date-time |
Nullable |
fromDate | date-time | DateTime |
id | int32 |
Nullable |
isActive | boolean | Boolean |
maximumAmountPaid | double |
Nullable |
notes | string | String |
totalAmountPaid | double | Decimal |
type | string |
MyStatutoryContributionAdjustmentAmountType
Possible values are:
|
The following HTTP status codes may be returned, optionally with a response resource.
Status code | Description | Resource |
---|---|---|
200 | OK OK |
EmployeeRecurringStatutoryContributionAdjustmentModel |
Powered by DapperDox