/basic_details.php GET 1 Profile
This wil fetch some basic information about the user
Request Test
| Parameter | Type | Description |
|---|---|---|
| stud_id | number |
this is the id of the user. |
| pass | string |
this is the user's password. |
| profile | null |
just add this variable without any value. |
Response Success
{
"code":202,
"response":{
"full_name":"Daniel Lennert",
"username":"danny",
"email":"[email protected]"
}
}
Response Auth Error
{
"code":351,
"msg":"User is unauthorized"
}
Response Param Error
{
"code":-9999,
"response":"Parameter Error"
}