GET api/List?tablename={tablename}&IdColName={IdColName}&NameColName={NameColName}&ListId={ListId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
tablename

string

Required

IdColName

string

Required

NameColName

string

Required

ListId

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of clsList
NameDescriptionTypeAdditional information
ListId

integer

None.

ListName

string

None.

Response Formats

application/json, text/json

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

application/xml, text/xml

Sample:
<ArrayOfListController.clsList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApplicationAPI.Controllers">
  <ListController.clsList>
    <ListId>1</ListId>
    <ListName>sample string 2</ListName>
  </ListController.clsList>
  <ListController.clsList>
    <ListId>1</ListId>
    <ListName>sample string 2</ListName>
  </ListController.clsList>
</ArrayOfListController.clsList>