Get the exam taking link for a participant

GET /exam-participants/link

Generates and retrieves a unique link that a participant can use to access and take an assigned exam.

Query parameters

  • participant_id integer Required

    Unique ID of the participant.

  • exam_id integer Required

    Unique ID of the exam.

Responses

  • 200

    Exam taking link successfully generated and returned.

  • 401

    Authorization failed. Ensure the X-Client-Key sent is valid and active.

  • 403

    Invalid or inactive client. The API key may be incorrect, expired, or your account does not have permission.

  • 404

    Participant is not assigned to this exam, or participant/exam data not found.

GET /exam-participants/link
curl \
 --request GET 'https://sandbox.indolat.com/api/v1/exam-participants/link?participant_id=42&exam_id=42' \
 --header "X-Client-Key: $API_KEY"