GET api/Performance/GetCompleteTestStatisticsforShort?loginid={loginid}&cid={cid}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
loginid

integer

Required

cid

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of GetCompleteTestStatisticsforShort_Result
NameDescriptionTypeAdditional information
courseid

integer

None.

coursename

string

None.

examid

integer

None.

testdate

string

None.

starttime

time interval

None.

noq

integer

None.

nocans

integer

None.

PercentageScore

decimal number

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "courseid": 1,
    "coursename": "sample string 1",
    "examid": 1,
    "testdate": "sample string 2",
    "starttime": "00:00:00.1234567",
    "noq": 1,
    "nocans": 1,
    "PercentageScore": 1.0
  },
  {
    "courseid": 1,
    "coursename": "sample string 1",
    "examid": 1,
    "testdate": "sample string 2",
    "starttime": "00:00:00.1234567",
    "noq": 1,
    "nocans": 1,
    "PercentageScore": 1.0
  }
]

application/xml, text/xml

Sample:
<ArrayOfGetCompleteTestStatisticsforShort_Result xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TechcanvassWebApi">
  <GetCompleteTestStatisticsforShort_Result>
    <PercentageScore>1</PercentageScore>
    <courseid>1</courseid>
    <coursename>sample string 1</coursename>
    <examid>1</examid>
    <nocans>1</nocans>
    <noq>1</noq>
    <starttime>PT0.1234567S</starttime>
    <testdate>sample string 2</testdate>
  </GetCompleteTestStatisticsforShort_Result>
  <GetCompleteTestStatisticsforShort_Result>
    <PercentageScore>1</PercentageScore>
    <courseid>1</courseid>
    <coursename>sample string 1</coursename>
    <examid>1</examid>
    <nocans>1</nocans>
    <noq>1</noq>
    <starttime>PT0.1234567S</starttime>
    <testdate>sample string 2</testdate>
  </GetCompleteTestStatisticsforShort_Result>
</ArrayOfGetCompleteTestStatisticsforShort_Result>