GET api/Picklists

Get all Picklists. Supported Headers: Filter, Sort, SortDesc, IncludeItems

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of Picklist
NameDescriptionTypeAdditional 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": "2024-05-04T17:51:46Z",
    "Type": 1,
    "ID": "fbde825c-4bb6-4223-aa93-aa4e29e1f81b"
  },
  {
    "IsAutoInsert": true,
    "Name": "sample string 2",
    "Description": "sample string 3",
    "Items": [
      {
        "Value": {},
        "Description": "sample string 2"
      },
      {
        "Value": {},
        "Description": "sample string 2"
      }
    ],
    "IsEditable": true,
    "EditDate": "2024-05-04T17:51:46Z",
    "Type": 1,
    "ID": "fbde825c-4bb6-4223-aa93-aa4e29e1f81b"
  }
]