POST api/CryptoLearn/v2/GetExamSubjects

Request Information

URI Parameters

None.

Body Parameters

GetSubjecforTestExamtDTO
NameDescriptionTypeAdditional information
Token

string

Required

RefreshToken

string

Required

Language

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Token": "sample string 1",
  "RefreshToken": "sample string 2",
  "Language": "sample string 3"
}

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ExamSubjectListDTO
NameDescriptionTypeAdditional information
myTotalProgress

integer

None.

totalExam

integer

None.

totalPassedExam

integer

None.

examSubjectList

Collection of ExamSubjectDTO

None.

Response Formats

application/json, text/json

Sample:
{
  "myTotalProgress": 1,
  "totalExam": 2,
  "totalPassedExam": 3,
  "examSubjectList": [
    {
      "$id": "2",
      "subjectId": 1,
      "subjectName": "sample string 2",
      "isPass": true,
      "totalQuestion": 4,
      "correctAnswer": 5,
      "correctAnswerPercentage": 6.1
    },
    {
      "$ref": "2"
    }
  ]
}