GET PlanCare2Api/Questionnaires/FilledQuestionnaires/{filledQuestionnaireId}/Answers/{questionGuid}
Gets answer by filledQuestionnaireId and questionGuid.
Request Information
URI Parameters
| Name | Description | Type | Additional 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| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
Id. |
integer |
- |
| QuestionGuid |
Guid of the question. |
globally unique identifier |
- |
| AnswerText |
Answer for QuestionTypes 'Text', 'Memo', 'Time'. |
string |
- |
| AnswerNumber |
Answer for QuestionType 'Number'. |
decimal number |
Nullable |
| AnswerDateTime |
Answer for QuestionType 'Date'. |
date |
Nullable |
| AnswerRelationIds |
Answer for QuestionTypes 'ClientSelection', 'EmployeeSelection'. |
Collection of integer |
- |
| AnswerRelations |
Additional data for AnswerRelationIds. |
Collection of FilledQuestionnaireQuestionAnswerRelation |
- |
| AnswerRelationCorrelationIds |
Answer for QuestionType 'CorrelationSelection'. |
Collection of integer |
- |
| AnswerRelationCorrelations |
Additional data for AnswerRelationCorrelationIds. |
Collection of FilledQuestionnaireQuestionAnswerRelationCorrelation |
- |
| AnswerOrganizationEntityIds |
Answer for QuestionType 'OrganizationEntitySelection'. |
Collection of integer |
- |
| AnswerOrganizationEntities |
Additional data for AnswerOrganizationEntityIds. |
Collection of FilledQuestionnaireQuestionAnswerOrganizationEntity |
- |
| SelectedAnswerPossibilityGuids |
Answer for QuestionTypes 'MultipleChoice', 'Choice', 'Radio', 'YesNo', 'TrackBar'. |
Collection of globally unique identifier |
- |
| Explanation |
Explanation for the given answer. |
string |
- |
| PossibleToNavigateTo |
Determines whether the question can be navigated. |
boolean |
- |
Response Formats
application/json, text/json
{
"Id": 1,
"QuestionGuid": "cc327483-656f-4d69-baf2-c29138a3ee0f",
"AnswerText": "sample string 3",
"AnswerNumber": 1.0,
"AnswerDateTime": "2026-05-26T21:10:12.671599+02:00",
"AnswerRelationIds": [
1,
2
],
"AnswerRelations": [
{
"$id": "2",
"RelationId": 1,
"LookupName": "sample string 2",
"DateOfBirth": "2026-05-26T21:10:12.671599+02:00"
},
{
"$ref": "2"
}
],
"AnswerRelationCorrelationIds": [
1,
2
],
"AnswerRelationCorrelations": [
{
"$id": "3",
"RelationCorrelationId": 1,
"CorrelationTypeName": "sample string 2",
"SourceName": "sample string 3",
"TargetName": "sample string 4",
"DisciplineName": "sample string 5",
"RoleName": "sample string 6",
"StartDate": "2026-05-26T21:10:12.671599+02:00",
"EndDate": "2026-05-26T21:10:12.671599+02:00"
},
{
"$ref": "3"
}
],
"AnswerOrganizationEntityIds": [
1,
2
],
"AnswerOrganizationEntities": [
{
"$id": "4",
"OrganizationEntityId": 1,
"Name": "sample string 2"
},
{
"$ref": "4"
}
],
"SelectedAnswerPossibilityGuids": [
"70dd482e-6649-4887-a554-9aa0d1fdbff5",
"9c0f2620-34cf-4f9d-9f67-57bef98580d3"
],
"Explanation": "sample string 4",
"PossibleToNavigateTo": true
}
application/xml, text/xml
<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-26T21:10:12.671599+02:00</AnswerDateTime>
<AnswerNumber>1</AnswerNumber>
<AnswerOrganizationEntities>
<FilledQuestionnaireQuestionAnswerOrganizationEntity>
<Name>sample string 2</Name>
<OrganizationEntityId>1</OrganizationEntityId>
</FilledQuestionnaireQuestionAnswerOrganizationEntity>
<FilledQuestionnaireQuestionAnswerOrganizationEntity>
<Name>sample string 2</Name>
<OrganizationEntityId>1</OrganizationEntityId>
</FilledQuestionnaireQuestionAnswerOrganizationEntity>
</AnswerOrganizationEntities>
<AnswerOrganizationEntityIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:long>1</d2p1:long>
<d2p1:long>2</d2p1:long>
</AnswerOrganizationEntityIds>
<AnswerRelationCorrelationIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:long>1</d2p1:long>
<d2p1:long>2</d2p1:long>
</AnswerRelationCorrelationIds>
<AnswerRelationCorrelations>
<FilledQuestionnaireQuestionAnswerRelationCorrelation>
<CorrelationTypeName>sample string 2</CorrelationTypeName>
<DisciplineName>sample string 5</DisciplineName>
<EndDate>2026-05-26T21:10:12.671599+02:00</EndDate>
<RelationCorrelationId>1</RelationCorrelationId>
<RoleName>sample string 6</RoleName>
<SourceName>sample string 3</SourceName>
<StartDate>2026-05-26T21:10:12.671599+02:00</StartDate>
<TargetName>sample string 4</TargetName>
</FilledQuestionnaireQuestionAnswerRelationCorrelation>
<FilledQuestionnaireQuestionAnswerRelationCorrelation>
<CorrelationTypeName>sample string 2</CorrelationTypeName>
<DisciplineName>sample string 5</DisciplineName>
<EndDate>2026-05-26T21:10:12.671599+02:00</EndDate>
<RelationCorrelationId>1</RelationCorrelationId>
<RoleName>sample string 6</RoleName>
<SourceName>sample string 3</SourceName>
<StartDate>2026-05-26T21:10:12.671599+02:00</StartDate>
<TargetName>sample string 4</TargetName>
</FilledQuestionnaireQuestionAnswerRelationCorrelation>
</AnswerRelationCorrelations>
<AnswerRelationIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:long>1</d2p1:long>
<d2p1:long>2</d2p1:long>
</AnswerRelationIds>
<AnswerRelations>
<FilledQuestionnaireQuestionAnswerRelation>
<DateOfBirth>2026-05-26T21:10:12.671599+02:00</DateOfBirth>
<LookupName>sample string 2</LookupName>
<RelationId>1</RelationId>
</FilledQuestionnaireQuestionAnswerRelation>
<FilledQuestionnaireQuestionAnswerRelation>
<DateOfBirth>2026-05-26T21:10:12.671599+02:00</DateOfBirth>
<LookupName>sample string 2</LookupName>
<RelationId>1</RelationId>
</FilledQuestionnaireQuestionAnswerRelation>
</AnswerRelations>
<AnswerText>sample string 3</AnswerText>
<Explanation>sample string 4</Explanation>
<Id>1</Id>
<PossibleToNavigateTo>true</PossibleToNavigateTo>
<QuestionGuid>cc327483-656f-4d69-baf2-c29138a3ee0f</QuestionGuid>
<SelectedAnswerPossibilityGuids xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>70dd482e-6649-4887-a554-9aa0d1fdbff5</d2p1:guid>
<d2p1:guid>9c0f2620-34cf-4f9d-9f67-57bef98580d3</d2p1:guid>
</SelectedAnswerPossibilityGuids>
</FilledQuestionnaireQuestionAnswer>