GET LookupListCategory/GetList?listID={listID}

Gets a list of LookupList

Request Information

URI Parameters

NameDescriptionTypeAdditional information
listID

Lists

Required

Body Parameters

None.

Response Information

Resource Description

Collection of LookupListCategoryDTO
NameDescriptionTypeAdditional information
ListId

List of id's

Lists

None.

CategoryId

Gets or sets the id of Category

integer

None.

CategoryName

Category Name

string

None.

Response Formats

application/json, text/json

Sample:
{
  "results": [
    {
      "ListId": 1,
      "CategoryId": 1,
      "CategoryName": "sample string 2"
    },
    {
      "ListId": 1,
      "CategoryId": 1,
      "CategoryName": "sample string 2"
    }
  ]
}

text/javascript

Sample:
{"results":[{"ListId":1,"CategoryId":1,"CategoryName":"sample string 2"},{"ListId":1,"CategoryId":1,"CategoryName":"sample string 2"}]}

application/bson

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

application/xml, text/xml

Sample:
<ArrayOfLookupListCategoryDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Lpp.Dns.DTO">
  <LookupListCategoryDTO>
    <CategoryId>1</CategoryId>
    <CategoryName>sample string 2</CategoryName>
    <ListId>GenericName</ListId>
  </LookupListCategoryDTO>
  <LookupListCategoryDTO>
    <CategoryId>1</CategoryId>
    <CategoryName>sample string 2</CategoryName>
    <ListId>GenericName</ListId>
  </LookupListCategoryDTO>
</ArrayOfLookupListCategoryDTO>