---
title: "Get Issue questions and answers"
method: GET
path: "/tasks/v1/incidents/{incident_id}/questions_answers"
tags: ["Issues"]
---

# Get Issue questions and answers

`GET /tasks/v1/incidents/{incident_id}/questions_answers`

## Path parameters

- `incident_id` string, required

## Response `200`

A successful response.

- S12TasksV1GetIncidentQuestionsAndAnswersResponse — GetIncidentQuestionsAndAnswersResponse returns a list of questions and answers associated with an issue ID.
  - `questions_answers` S12TasksV1QuestionAndAnswers[] — The list of questions and their respective answers.
    - `question` S12TasksV1Question — Question represents the question structure for a custom question.
      - `id` string — The UUID of the question.
      - `text` string — The text of the question being asked (e.g. "How many eggs are in a dozen?"). This does not use the new `validator.string` option as question processing logic fails when symbols are substituted for similar-looking symbols.
      - `type` 'QUESTION_TYPE_UNSPECIFIED' | 'QUESTION_TYPE_TEXT' | 'QUESTION_TYPE_MULTIPLE_CHOICE' — - QUESTION_TYPE_UNSPECIFIED: The question type is unspecified. This generally should not happen. - QUESTION_TYPE_TEXT: The question is text type. This question accepts freetext answers. - QUESTION_TYPE_MULTIPLE_CHOICE: The question is multiple choice. This question provides a list of options to choose from.
      - `is_mandatory` boolean — Whether the question is mandatory or not
      - `multiple_choice_options` S12TasksV1MultipleChoiceOptions — MultipleChoiceOptions is an explicit message for a set of MultipleChoiceOption's to use in a oneof field below.
        - `options` S12TasksV1MultipleChoiceOption[]
          - `id` string — The UUID of the multiple choice option.
          - `text` string — The text of the multiple choice option. This does not use the new `validator.string` option as question processing logic fails when symbols are substituted for similar-looking symbols.
    - `is_answered` boolean — Whether the question has been answered at least once.
    - `answer_set` S12TasksV1Answer[] — The set of answers that is associated with the question.
      - `answer_text` S12TasksV1AnswerText — A type of answer for a custom question containing text data.
        - `text` string — The text that answers the question.
      - `answer_multiple_choice_option` S12TasksV1MultipleChoiceOption — MultipleChoiceOption represents a possible answer for a multiple choice question.
        - `id` string — The UUID of the multiple choice option.
        - `text` string — The text of the multiple choice option. This does not use the new `validator.string` option as question processing logic fails when symbols are substituted for similar-looking symbols.
      - `answer_id` string — The ID of the answer.
      - `answered_at` string, date-time — Date and time the question was answered.

## Other responses

- `default` — An unexpected error response.

---

[API](https://skmtc.net/safetyculture/apis/safetyculture-api.md) · [All operations](https://skmtc.net/safetyculture/apis/safetyculture-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/safetyculture/safetyculture-api/revisions/5be91df61ded/schema)
