Hello API Update Subscribers,
ProctorU is happy to announce that it is updating the getEmailExist endpoint to provide better security for our users. This update will change the response of the getEmailExist endpoint from returning all of the student's enrollments to now only returning if the student is enrolled in the school making the call to our endpoint. The format of the responses will stay the same, but they will no longer include multiple institutions. There will be example requests and responses for the updated call below.
curl --location --request GET 'https://get-email-exist-go.proctoru-qa.com/api/getEmailExist/'
--header 'Authorization-Token: 53577dcc-35b7-4667-a649-a02b770c283d'
--header 'Content-Type: application/x-www-form-urlencoded'
--data-urlencode 'time_sent=2020-10-23T15:01:46.000Z'
--data-urlencode 'email=demo...@proctoru.com'
{
"time_sent": "2020-10-23T15:01:45Z",
"response_code": 1,
"message": "",
"data": {
"schoolname": "Proctor University"
}
}
curl --location --request GET 'https://get-email-exist-go.proctoru-qa.com/api/getEmailExist/'
--header 'Authorization-Token: 53577dbb-35c8-4667-a649-a02b770c283d'
--header 'Content-Type: application/x-www-form-urlencoded'
--data-urlencode 'time_sent=2020-10-23T15:12:40.000Z'
--data-urlencode 'email=demoe...@proctoru.com'
{
"time_sent": "2020-10-23T15:12:41.000Z",
"response_code": 1,
"message": "",
"data": {
"schoolname": ""
}
}
Happy Testing!