/get_exam.php GET

This wil fetch the exam structure

Request     Test

Parameter Type Description
stud_id number this is the id of the user.
pass string this is the user's password.

Response Auth Error

{
   "code":351,
   "msg":"User is unauthorized"
}

Response Param Error

{
   "code":-9999,
   "msg":"Parameter Error"
}

Response Success

{
   "code":202,
   "response":[
      {
         "ass_id":"21",
         "exam_name":"Internal",
         "full_marks":"50",
         "exam_no":"2"
      },
      {
         "ass_id":"23",
         "exam_name":"Final",
         "full_marks":"100",
         "exam_no":"1"
      }
   ]
}