---
title: "Create scorecard question answer option"
method: POST
path: "/v3/scorecard_question_answer_options"
tags: ["Scorecard Question Answer Options"]
---

# Create scorecard question answer option

`POST /v3/scorecard_question_answer_options`

Record that a specific option was selected for a scorecard question answer. Both `scorecard_question_answer_id` and `scorecard_question_option_id` are required, and the option must belong to the same scorecard question as the answer. Use this on `multi_select` questions to add each selected option; for `single_select` an answer should have at most one row, so submit a single POST and delete-and-replace if the selection changes. The free-text portion of the answer (and its `boolean_value` for `yes_no` questions) lives on `/v3/scorecard_question_answers` — this endpoint only records the option link.

## Request body

- object
  - `scorecard_question_option_id` integer, required
  - `scorecard_question_answer_id` integer, required

## Response `201`

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.

## Other responses

- `401` — Unauthorized
- `403` — Forbidden
- `422` — Unprocessable Content

---

[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)
