Updates the employee's pay rate adjustment schedule record with the specified ID.
PUT http:///api/v2/business/{businessId}/employee/{employeeId}/payrateschedule/{id}
  | Parameter name | Value | Description | Additional | 
|---|---|---|---|
| id | int32 | Required | |
| businessId | string | Required | |
| employeeId | string | Required | 
The request body takes a complete PayRateScheduleModel resource, containing the following writable properties:
{
    "commencementDate": "date-time",
    "employeeId": "int32",
    "id": "int32",
    "rate": "double",
    "rateUnit": "string"
}
| Name | Type | Description | 
|---|---|---|
| commencementDate | date-time | DateTime | 
| employeeId | int32 | Int32 | 
| id | int32 | Int32 | 
| rate | double | Decimal | 
| rateUnit | string | String | 
The following HTTP status codes may be returned, optionally with a response resource.
| Status code | Description | Resource | 
|---|---|---|
| 200 | OK OK  | 
          PayRateScheduleModel | 
Powered by DapperDox