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": "d233776f-ef71-41db-82d6-2ec2db214635",
"Value": "sample string 2",
"Description": "sample string 3",
"Preserve": true,
"Source": "sample string 5",
"CreatedBy": "sample string 6",
"DateChangedUtc": "2026-01-03T23:15:22.3010672-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": "ea13aaf7-d58e-4578-bbb6-e2760509583c",
"Value": "sample string 2",
"Description": "sample string 3",
"Preserve": true,
"Source": "sample string 5",
"CreatedBy": "sample string 6",
"DateChangedUtc": "2026-01-03T23:15:22.3010672-06:00"
}
},
"Errors": [
"sample string 1",
"sample string 2"
],
"Warnings": [
"sample string 1",
"sample string 2"
]
}