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": "3c1fe092-b2ef-4706-80ba-f093f9615523",
"Value": "sample string 2",
"Description": "sample string 3",
"Preserve": true,
"Source": "sample string 5",
"CreatedBy": "sample string 6",
"DateChangedUtc": "2026-01-05T04:45:38.1510687-06: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": "88751ef9-9e79-43e0-bdb7-c88d37505a20",
"Value": "sample string 2",
"Description": "sample string 3",
"Preserve": true,
"Source": "sample string 5",
"CreatedBy": "sample string 6",
"DateChangedUtc": "2026-01-05T04:45:38.1510687-06:00"
}
},
"Errors": [
"sample string 1",
"sample string 2"
],
"Warnings": [
"sample string 1",
"sample string 2"
]
}