GET PlanCare2Api/Questionnaires/FilledQuestionnaires/{filledQuestionnaireId}/Answers/{questionGuid}

Gets answer by filledQuestionnaireId and questionGuid.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
filledQuestionnaireId

The id of the filled questionnaire.

integer

Required

questionGuid

The guid of the question.

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

Answer.

FilledQuestionnaireQuestionAnswer
NameDescriptionTypeAdditional information
Id

Id.

integer

None.

QuestionGuid

Guid of the question.

globally unique identifier

None.

AnswerText

AnswerText.

string

None.

AnswerNumber

AnswerNumber.

decimal number

None.

AnswerDateTime

AnswerDateTime.

date

None.

Explanation

Explanation.

string

None.

SelectedAnswerPossibilityGuids

Guids of the selected answerpossibilities.

Collection of globally unique identifier

None.

PossibleToNavigateTo

Determines whether the question can be navigated to.

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "QuestionGuid": "6215f7b7-ed47-4a2a-9f9c-9fb8899ac64b",
  "AnswerText": "sample string 3",
  "AnswerNumber": 1.0,
  "AnswerDateTime": "2026-05-26T23:19:24.4774458+02:00",
  "Explanation": "sample string 4",
  "SelectedAnswerPossibilityGuids": [
    "3a4665bf-ba11-4542-8efe-e41f2dda0894",
    "1f888a55-c12e-46f8-9bc9-bf73ddcdc2ca"
  ],
  "PossibleToNavigateTo": true
}

application/xml, text/xml

Sample:
<FilledQuestionnaireQuestionAnswer xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DHS.PlanCare.Web.Api.Interface.Questionnaire">
  <AnswerDateTime>2026-05-26T23:19:24.4774458+02:00</AnswerDateTime>
  <AnswerNumber>1</AnswerNumber>
  <AnswerText>sample string 3</AnswerText>
  <Explanation>sample string 4</Explanation>
  <Id>1</Id>
  <PossibleToNavigateTo>true</PossibleToNavigateTo>
  <QuestionGuid>6215f7b7-ed47-4a2a-9f9c-9fb8899ac64b</QuestionGuid>
  <SelectedAnswerPossibilityGuids xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:guid>3a4665bf-ba11-4542-8efe-e41f2dda0894</d2p1:guid>
    <d2p1:guid>1f888a55-c12e-46f8-9bc9-bf73ddcdc2ca</d2p1:guid>
  </SelectedAnswerPossibilityGuids>
</FilledQuestionnaireQuestionAnswer>