GET api/Picklists?name={name}
Get Picklist by name. Supported Headers: IncludeItems
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| name | string |
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": "2026-01-01T22:49:22Z",
"Type": 1,
"ID": "a1ab8ee1-10a8-4747-b1e2-eac741699884"
}