30 Day Of Cloud Progress Check API to track your progress in 30-DOC.
-
/find-data
:track your progress by passing
email
in body.Method: GET
Body:
{ "email" : "you_email" }
Response - 200 OK
{ "status": "success", "data": { "Track1": "2", "Track2": "3" } }
Response - 404 Not Found
{ "status": "error", "message": "Email not found" }
Response - 500 Internal Server Error
{ "status": "error", "message": "Something went wrong!", }
-
/leaderboard
:Get Leaderboard of Institution
Method: GET
Response - 200 Ok
{ "status": "success", "data": [ { "Student Name": "Student Name, "Student Email": "[email protected]", "Institution": "Institute Name", "Enrolment Date & Time": "date-time timestamp", "Enrolment Status": "All Good", "Qwiklabs Profile URL": "public profile url", "# of Skill Badges Completed in Track 1": "6", "# of Skill Badges Completed in Track 2": "6", "totalQuest": 12 }, { "Student Name": "Student Name, "Student Email": "[email protected]", "Institution": "Institute Name", "Enrolment Date & Time": "date-time timestamp", "Enrolment Status": "All Good", "Qwiklabs Profile URL": "public profile url", "# of Skill Badges Completed in Track 1": "5 "# of Skill Badges Completed in Track 2": "0, "totalQuest": 5 }, ] }
Response - 500 Internal Server Error
{ "status": "error", "message": "Something went wrong!", }