/marks_enter_check.php GET
This will fetch the possible slots of marks input, if there's none it will return empty array.
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,
"response":"Parameter Error"
}
Response Success One slot free
{
"code":202,
"response":[
{
"term_id":"24",
"term_name":"Semester 2",
"term_sub":[
{
"sub_id":"48",
"sub_name":"English",
"sub_ass":[
{
"ass_id":"21",
"ass_name":"Internal",
"ass_no":1,
"full_marks":"50"
}
]
}
]
}
]
}
Response Success No slots left
{
"code":202,
"response":[]
}