---
title: "List scorecard question answer options"
method: GET
path: "/v3/scorecard_question_answer_options"
tags: ["Scorecard Question Answer Options"]
---

# List scorecard question answer options

`GET /v3/scorecard_question_answer_options`

Scorecard question answer options are the join rows between a scorecard question answer and the option(s) selected for it — one row per (`scorecard_question_answer_id`, `scorecard_question_option_id`) pair. A `multi_select` answer can have many rows here; a `single_select` answer has at most one. Filter with `scorecard_question_answer_ids` to list every option selected for a set of answers, or `scorecard_question_option_ids` to find every answer that picked a given option. The option labels and the answer's free-text content live on `/v3/scorecard_question_options` and `/v3/scorecard_question_answers`; this endpoint only exposes the foreign keys.

## Query parameters

- `cursor` string
- `per_page` integer
- `ids` integer[]
- `created_at` object
  - `gte` string, date-time
  - `lte` string, date-time
  - `gt` string, date-time
  - `lt` string, date-time
- `updated_at` object
  - `gte` string, date-time
  - `lte` string, date-time
  - `gt` string, date-time
  - `lt` string, date-time
- `scorecard_question_option_ids` integer[]
- `scorecard_question_answer_ids` integer[]
- `fields` string[]

## Response `200`

Successful

- object[]
  - `id` integer
  - `created_at` string, date-time
  - `updated_at` string, date-time
  - `scorecard_question_option_id` integer — Id of the selected option in the question's option list. References a `/v3/scorecard_question_options` row.
  - `scorecard_question_answer_id` integer — Id of the answer this selection belongs to. References a `/v3/scorecard_question_answers` row.

---

[API](https://skmtc.dev/greenhouse/apis/auth-api.md) · [All operations](https://skmtc.dev/greenhouse/apis/auth-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/greenhouse/auth-api/revisions/9517a2e54640/schema)
