PUT api/Picklists/{id}
Update an existing Picklist. This is not a partial update therefore, please pass in the full Picklist object (including items) to your request. For partial updates, use the PATCH endpoint
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id |
Id of the record |
globally unique identifier |
Required |
Body Parameters
Serialized Picklist record in the body of the request
PicklistName | Description | Type | Additional information |
---|---|---|---|
IsAutoInsert | boolean |
None. |
|
CreateDate | date |
None. |
|
LastItemAdded | globally unique identifier |
None. |
|
Name | string |
None. |
|
Description | string |
None. |
|
Items | Collection of PickListItemValue |
None. |
|
IsEditable | boolean |
None. |
|
EditDate | date |
None. |
|
Type | PickListType |
None. |
|
ID | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{ "IsAutoInsert": true, "Name": "sample string 2", "Description": "sample string 3", "Items": [ { "Value": {}, "Description": "sample string 2" }, { "Value": {}, "Description": "sample string 2" } ], "IsEditable": true, "EditDate": "2025-04-11T06:59:02Z", "Type": 1, "ID": "4b410ec9-f1aa-4db8-974c-c7d20f5e8d51" }
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.