GET api/GetOverAllExamDetailsByUserId?uid={uid}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
uid | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of ExamsModelName | Description | Type | Additional information |
---|---|---|---|
ExamId | integer |
None. |
|
ExamName | string |
None. |
|
ExamDate | string |
None. |
|
ExamScore | integer |
None. |
|
Question | integer |
None. |
|
ID | integer |
None. |
|
Id | integer |
None. |
|
SubscribeCount | integer |
None. |
Response Formats
application/json, text/json
Sample:
[ { "ExamId": 1, "ExamName": "sample string 1", "ExamDate": "sample string 2", "ExamScore": 3, "Question": 4, "ID": 5, "Id": 1, "SubscribeCount": 6 }, { "ExamId": 1, "ExamName": "sample string 1", "ExamDate": "sample string 2", "ExamScore": 3, "Question": 4, "ID": 5, "Id": 1, "SubscribeCount": 6 } ]
application/xml, text/xml
Sample:
<ArrayOfExamsModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VullamAPIProject.Models"> <ExamsModel> <ExamDate>sample string 2</ExamDate> <ExamId>1</ExamId> <ExamName>sample string 1</ExamName> <ExamScore>3</ExamScore> <ID>5</ID> <Id>1</Id> <Question>4</Question> <SubscribeCount>6</SubscribeCount> </ExamsModel> <ExamsModel> <ExamDate>sample string 2</ExamDate> <ExamId>1</ExamId> <ExamName>sample string 1</ExamName> <ExamScore>3</ExamScore> <ID>5</ID> <Id>1</Id> <Question>4</Question> <SubscribeCount>6</SubscribeCount> </ExamsModel> </ArrayOfExamsModel>