GET api/Exam/GetTheoryTests

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of KeyVal
NameDescriptionTypeAdditional information
Key

integer

None.

Value

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "key": 1,
    "value": "sample string 2"
  },
  {
    "key": 1,
    "value": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfKeyVal xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DTO">
  <KeyVal>
    <Key>1</Key>
    <Value>sample string 2</Value>
  </KeyVal>
  <KeyVal>
    <Key>1</Key>
    <Value>sample string 2</Value>
  </KeyVal>
</ArrayOfKeyVal>