POST api/v2/fgGetPastTestAnswer
Request Information
URI Parameters
None.
Body Parameters
PastSolvedTestRequestModel| Name | Description | Type | Additional information |
|---|---|---|---|
| TestId | integer |
None. |
|
| TestAnswerOrder | integer |
None. |
|
| ClassId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"TestId": 1,
"TestAnswerOrder": 2,
"ClassId": 1
}
text/html
Sample:
{"TestId":1,"TestAnswerOrder":2,"ClassId":1}
application/xml, text/xml
Sample:
<PastSolvedTestRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Services.Models"> <ClassId>1</ClassId> <TestAnswerOrder>2</TestAnswerOrder> <TestId>1</TestId> </PastSolvedTestRequestModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
BaseResponseModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Data | Object |
None. |
|
| ErrorMessage | string |
None. |
|
| Status | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"Data": {},
"ErrorMessage": "sample string 2",
"Status": true
}
text/html
Sample:
{"Data":{},"ErrorMessage":"sample string 2","Status":true}
application/xml, text/xml
Sample:
<BaseResponseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Services.Models"> <Data /> <ErrorMessage>sample string 2</ErrorMessage> <Status>true</Status> </BaseResponseModel>