PUT api/v1/employeepreferences/{employeePreferenceId}
Update a particular employee preference
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| employeePreferenceId | globally unique identifier |
Required |
Body Parameters
EmployeePreferenceModel| Name | Description | Type | Additional information |
|---|---|---|---|
| EmployeePreferenceId | globally unique identifier |
Required |
|
| Value | string |
Required |
|
| Description | string |
String length: inclusive between 0 and 2000 |
|
| Preserve | boolean |
Required |
|
| Source | string |
String length: inclusive between 0 and 50 |
|
| CreatedBy | string |
String length: inclusive between 0 and 50 |
|
| DateChangedUtc | date |
Required |
Request Formats
application/json, text/json
Sample:
{
"EmployeePreferenceId": "f21b7850-04c2-4d18-8606-b37f3adb357d",
"Value": "sample string 2",
"Description": "sample string 3",
"Preserve": true,
"Source": "sample string 5",
"CreatedBy": "sample string 6",
"DateChangedUtc": "2026-08-28T23:03:31.9162025-05:00"
}
Response Information
Resource Description
ApiResponseModelOfEmployeePreferenceModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Data | ApiResponseDataModelOfEmployeePreferenceModel |
None. |
|
| Errors | Collection of string |
None. |
|
| Warnings | Collection of string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Data": {
"PageSize": 1,
"Page": 2,
"TotalPages": 3,
"TotalResults": 4,
"Results": {
"EmployeePreferenceId": "cfa11066-48fe-4558-84ef-fab5643f7707",
"Value": "sample string 2",
"Description": "sample string 3",
"Preserve": true,
"Source": "sample string 5",
"CreatedBy": "sample string 6",
"DateChangedUtc": "2026-08-28T23:03:31.9162025-05:00"
}
},
"Errors": [
"sample string 1",
"sample string 2"
],
"Warnings": [
"sample string 1",
"sample string 2"
]
}