v1

latestOpenAPI 3.1.02026-07-261770816.7 KB
Scorecard Question Answers

List scorecard question answers

A scorecard question answer is one interviewer's response to a single question on a scorecard. Each row pairs a scorecard with a scorecard_question and carries the response in answer (for text questions) or boolean_value (for yes_no questions); responses to single_select and multi_select questions are stored as scorecard_question_answer_options linked to this row. Filter by scorecard_ids to pull every answer on a given scorecard, or by scorecard_question_ids to compare how interviewers responded to the same question across scorecards.

get/v3/scorecard_question_answers

Query parameters

cursorstring

Cursor link for pagination from previous page response header. Do not use any other parameters when using this.

per_pageinteger

Number of results per page

idsinteger[]

Comma separated list

gtestring date-time
ltestring date-time
gtstring date-time
ltstring date-time
gtestring date-time
ltestring date-time
gtstring date-time
ltstring date-time
scorecard_idsinteger[]

Comma separated list

scorecard_question_idsinteger[]

Comma separated list

fieldsstring[]

Comma separated list of fields to return

Response

Successful

idinteger
created_atstring date-time
updated_atstring date-time
scorecard_idinteger

Id of the scorecard this answer belongs to. Every answer is tied to exactly one scorecard, which in turn belongs to a single interviewer's submission on one application.

scorecard_question_idinteger

Id of the scorecard_question this answer responds to. The question's answer_type (text, yes_no, single_select, multi_select) determines which field on the answer is populated: text uses answer, yes_no uses boolean_value, and single_select/multi_select use the scorecard_question_answer_options sub-resource.

answerstring nullable

Free-text response for text-type scorecard questions. Plain text — HTML formatting and @-mention markup are stripped. null (or empty string) when the question is yes_no, single_select, or multi_select, or when the interviewer declined to answer.

answer_with_tagsstring nullable

HTML-formatted version of answer, preserving rich-text formatting (bold, italic, etc.) and @-mentions as embedded user tags (e.g. @[User Name](user:123)). null when there is no formatting or markup to preserve (i.e. when the stored value would be identical to answer), and under the same conditions as answer.

boolean_valueboolean nullable

Response for yes_no-type scorecard questions: true for yes, false for no, null when the question is not yes_no or when the interviewer left it blank. Ignored on writes for any question whose answer_type is not yes_no.