POST api/CryptoLearn/v2/GetExams

Request Information

URI Parameters

None.

Body Parameters

GetExamsDTOWithoutAuth
NameDescriptionTypeAdditional information
subjectId

integer

Required

lang

string

Required

Request Formats

application/json, text/json

Sample:
{
  "subjectId": 1,
  "lang": "sample string 2"
}

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ExamResponseDTOV2
NameDescriptionTypeAdditional information
totalExam

integer

None.

examSubjectList

Collection of ExamDTOv2

None.

Response Formats

application/json, text/json

Sample:
{
  "totalExam": 1,
  "examSubjectList": [
    {
      "$id": "2",
      "examId": 1,
      "examName": "sample string 2",
      "totalQuestion": 3
    },
    {
      "$ref": "2"
    }
  ]
}