GET api/Picklists/{id}
Get Picklist by id. Supported Headers: IncludeItems
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
Picklist| Name | 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. |
Response 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-12-31T18:48:43Z",
"Type": 1,
"ID": "5f927bdd-2183-48ee-82bb-7e16ac438c6c"
}