Integrations Test Sessions & Results

Answers

Fetch every question a candidate saw in a test session and exactly what they answered — this endpoint is in beta.

Published 2026/08/26
This endpoint is in beta — its response shape may change.

GET /tasks/:taskId/test-instances/:id/answers — query param: mode. Returns { answers: [...] }, one entry per question.

  • basicsectionIndex, sectionNo, pageNo, pageNoInSection, questionNo, questionNoInSection, questionNoInPage, questionReference, required, effective, question.
  • detailed — adds sectionUuid, pageUuid.

question is shaped differently depending on the question type:

  • Multiple choice{ text, answer: { valid, score, pointsAchieved, choices: [{ text }] } }
  • Match{ text, answer: { valid, score, pointsAchieved, matches: [{ item, option }] } }
  • Input (field, area, audio, video, code, rich, file, photo, numeric, tabular) — { text, type, answer: { valid, score, pointsAchieved, value } }

answer is null if the candidate never responded to that question. score ranges from −1 to 1, matching the success-rate scale used throughout scoring — see Point Scoring.

Go back