GET LookupList/GetList

Gets a list of LookupList

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of LookupListDTO
NameDescriptionTypeAdditional information
ListId

List of id's

Lists

None.

ListName

List Name

string

None.

Version

Item code Version number

string

None.

Response Formats

application/json, text/json

Sample:
{
  "results": [
    {
      "ListId": 1,
      "ListName": "sample string 1",
      "Version": "sample string 2"
    },
    {
      "ListId": 1,
      "ListName": "sample string 1",
      "Version": "sample string 2"
    }
  ]
}

text/javascript

Sample:
{"results":[{"ListId":1,"ListName":"sample string 1","Version":"sample string 2"},{"ListId":1,"ListName":"sample string 1","Version":"sample string 2"}]}

application/bson

Sample:
Binary JSON content. See http://bsonspec.org for details.

application/xml, text/xml

Sample:
<ArrayOfLookupListDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Lpp.Dns.DTO">
  <LookupListDTO>
    <ListId>GenericName</ListId>
    <ListName>sample string 1</ListName>
    <Version>sample string 2</Version>
  </LookupListDTO>
  <LookupListDTO>
    <ListId>GenericName</ListId>
    <ListName>sample string 1</ListName>
    <Version>sample string 2</Version>
  </LookupListDTO>
</ArrayOfLookupListDTO>