This API will be used to update the candidate's password.
Pass ak, sgn, and ts as headers, and all three parameters will be received using the Signature Generation API.
Headerak:{{API Key}} sgn:{{sgn}} ts:{{ts}}
URLCopy{{API Endpoint}}/api/v1/changeStudentPassword
BodyCopy {
"email": "{Candidate Email}",
"oldPassword": "{Candidate Old Password}",
"newPassword": "{Candidate New Password}"
}
Case 1 : When SuccessSuccess {
"result": "success",
"success": {
"code": "200",
"msg": "Password change successfull."
}
}
Case 2 : When ErrorError {
"result": "error",
"error": {
"code": "3100",
"msg": "Something went wrong"
}
}