GET api/ListType/GetListBasedOnType?listType={listType}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
listType

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of ListTypeDto
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

ListTypeName

string

None.

ListTypeText

string

None.

ListTypeValue

string

None.

Sequence

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": "ddc17f7a-39e5-41d4-a0a1-f1a17a54479b",
    "ListTypeName": "sample string 2",
    "ListTypeText": "sample string 3",
    "ListTypeValue": "sample string 4",
    "Sequence": 5
  },
  {
    "Id": "ddc17f7a-39e5-41d4-a0a1-f1a17a54479b",
    "ListTypeName": "sample string 2",
    "ListTypeText": "sample string 3",
    "ListTypeValue": "sample string 4",
    "Sequence": 5
  }
]

application/xml, text/xml

Sample:
<ArrayOfListTypeDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Modules.ListTypeModule.Model">
  <ListTypeDto>
    <Id>ddc17f7a-39e5-41d4-a0a1-f1a17a54479b</Id>
    <ListTypeName>sample string 2</ListTypeName>
    <ListTypeText>sample string 3</ListTypeText>
    <ListTypeValue>sample string 4</ListTypeValue>
    <Sequence>5</Sequence>
  </ListTypeDto>
  <ListTypeDto>
    <Id>ddc17f7a-39e5-41d4-a0a1-f1a17a54479b</Id>
    <ListTypeName>sample string 2</ListTypeName>
    <ListTypeText>sample string 3</ListTypeText>
    <ListTypeValue>sample string 4</ListTypeValue>
    <Sequence>5</Sequence>
  </ListTypeDto>
</ArrayOfListTypeDto>