Find and display exam details

GET /exams/{id}

Retrieves detailed information about an exam based on its unique ID.

Path parameters

  • id integer(int64) Required

    Unique ID of the exam to find.

Responses

  • 200

    Exam data successfully found and displayed.

  • 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

    Exam data with the given ID was not found in the system.

GET /exams/{id}
curl \
 --request GET 'https://app.indolat.com/api/v1/exams/{id}' \
 --header "X-Client-Key: $API_KEY"