GET api/v1/ListValuesMaster/{id}
Retrieves an array of list values identified by id. Where id is identifier.
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| id |
Define this parameter in the request URI. |
Response Information
Response body formats
application/json, text/json
Sample:
[
{
"TheID": 1,
"KeyIdentifier": "sample string 2",
"KeyValue": "sample string 3",
"KeyDescription": "sample string 4",
"IsDefault": true
},
{
"TheID": 1,
"KeyIdentifier": "sample string 2",
"KeyValue": "sample string 3",
"KeyDescription": "sample string 4",
"IsDefault": true
},
{
"TheID": 1,
"KeyIdentifier": "sample string 2",
"KeyValue": "sample string 3",
"KeyDescription": "sample string 4",
"IsDefault": true
}
]
application/xml, text/xml
Sample:
<ArrayOfListValuesMasterDTO>
<ListValuesMasterDTO>
<TheID>1</TheID>
<KeyIdentifier>sample string 2</KeyIdentifier>
<KeyValue>sample string 3</KeyValue>
<KeyDescription>sample string 4</KeyDescription>
<IsDefault>true</IsDefault>
</ListValuesMasterDTO>
<ListValuesMasterDTO>
<TheID>1</TheID>
<KeyIdentifier>sample string 2</KeyIdentifier>
<KeyValue>sample string 3</KeyValue>
<KeyDescription>sample string 4</KeyDescription>
<IsDefault>true</IsDefault>
</ListValuesMasterDTO>
<ListValuesMasterDTO>
<TheID>1</TheID>
<KeyIdentifier>sample string 2</KeyIdentifier>
<KeyValue>sample string 3</KeyValue>
<KeyDescription>sample string 4</KeyDescription>
<IsDefault>true</IsDefault>
</ListValuesMasterDTO>
</ArrayOfListValuesMasterDTO>