GET PlanCare2Api/Questionnaires/FilledQuestionnaires/{filledQuestionnaireId}

Gets a filled questionnaire.

Request Information

URI Parameters

Name Description Type Additional information
filledQuestionnaireId

The id of the filledQuestionnaireId.

integer

Required

Body Parameters

None.

Response Information

Resource Description

A filled questionnaire.

FilledQuestionnaire
Name Description Type Additional information
Id

Id.

integer

-

RelationId

Id of the relation.

integer

-

RelationLookUpName

LookUpName of the relation.

string

-

ClientId

Id of the client.

integer

Deprecated (unavailable from 21.01.1P): Please use 'RelationId' instead.

Status

Status.

FilledQuestionnaireStatus

-

StatusDescription

Description of the status.

string

-

QuestionnaireGuid

Guid of the questionnaire.

globally unique identifier

-

QuestionnaireName

Name of the questionnaire.

string

-

QuestionnaireVersion

Version of the questionnaire.

string

-

CreatedBy

CreatedBy.

string

-

CreatedOn

CreatedOn.

date

-

LastChangedBy

LastChangedBy.

string

-

LastChangedOn

LastChangedOn.

date

Nullable

Locked

Locked.

boolean

-

LockedByLoggedOnAccessUser

LockedByLoggedOnAccessUser.

boolean

-

LockedBy

LockedBy.

string

-

LockedOn

LockedOn.

date

Nullable

Response Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "RelationId": 2,
  "RelationLookUpName": "sample string 3",
  "ClientId": 4,
  "Status": 1,
  "StatusDescription": "sample string 5",
  "QuestionnaireGuid": "89c80e06-4056-4bc9-aee8-4c3efa40fe7d",
  "QuestionnaireName": "sample string 7",
  "QuestionnaireVersion": "sample string 8",
  "CreatedBy": "sample string 9",
  "CreatedOn": "2026-05-26T23:13:14.8532424+02:00",
  "LastChangedBy": "sample string 11",
  "LastChangedOn": "2026-05-26T23:13:14.8532424+02:00",
  "Locked": true,
  "LockedByLoggedOnAccessUser": true,
  "LockedBy": "sample string 14",
  "LockedOn": "2026-05-26T23:13:14.8532424+02:00"
}

application/xml, text/xml

Sample:
<FilledQuestionnaire xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DHS.PlanCare.Web.Api.Interface.Questionnaire">
  <ClientId>4</ClientId>
  <CreatedBy>sample string 9</CreatedBy>
  <CreatedOn>2026-05-26T23:13:14.8532424+02:00</CreatedOn>
  <Id>1</Id>
  <LastChangedBy>sample string 11</LastChangedBy>
  <LastChangedOn>2026-05-26T23:13:14.8532424+02:00</LastChangedOn>
  <Locked>true</Locked>
  <LockedBy>sample string 14</LockedBy>
  <LockedByLoggedOnAccessUser>true</LockedByLoggedOnAccessUser>
  <LockedOn>2026-05-26T23:13:14.8532424+02:00</LockedOn>
  <QuestionnaireGuid>89c80e06-4056-4bc9-aee8-4c3efa40fe7d</QuestionnaireGuid>
  <QuestionnaireName>sample string 7</QuestionnaireName>
  <QuestionnaireVersion>sample string 8</QuestionnaireVersion>
  <RelationId>2</RelationId>
  <RelationLookUpName>sample string 3</RelationLookUpName>
  <Status>Concept</Status>
  <StatusDescription>sample string 5</StatusDescription>
</FilledQuestionnaire>