Get a list of participant exam results

GET /exam-results

Retrieves a list of exam results. Can be filtered by participant ID and/or exam ID. The results are paginated.

Query parameters

  • limit integer

    Specifies the maximum number of exam result records to return per page. (min: 1, max: 100, default: 10)

  • page integer

    Specifies the page number of the exam result list to access. (min: 1, default: 1)

  • participant_id integer

    Unique ID of the Participant to filter exam results. Optional.

  • exam_id integer

    Unique ID of the Exam to filter exam results. Optional.

Responses

  • 200

    Successfully retrieved the list of exam results.

  • 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.

GET /exam-results
curl \
 --request GET 'https://app.indolat.com/api/v1/exam-results' \
 --header "X-Client-Key: $API_KEY"