GET PlanCare2Api/WorkplansV2/{id}/evaluations

Retrieve the evaluation information of a workplan V2.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

The workplan V2 ID.

integer

Required

Body Parameters

None.

Response Information

Resource Description

A List of workplan V2 evaluations.

Collection of WorkplanV2Evaluation
NameDescriptionTypeAdditional information
Id

The id for the workplan evaluation

integer

None.

StartDate

The startdate of the evaluation

date

None.

EndDate

The enddate of the evaluation

date

None.

EvaluationType

The desriptiontype of the evaluation

string

None.

EvaluationTypeId

The type id of the evaluation

integer

None.

Content

The evaluation text

string

None.

Scores

List of scores of this evaluation

Collection of Score

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "$id": "1",
    "Id": 1,
    "StartDate": "2026-05-26T23:19:51.0244617+02:00",
    "EndDate": "2026-05-26T23:19:51.0244617+02:00",
    "EvaluationType": "sample string 4",
    "EvaluationTypeId": 5,
    "Content": "sample string 6",
    "Scores": [
      {
        "$id": "2",
        "Color": 1,
        "Description": "sample string 2",
        "Value": 3
      },
      {
        "$ref": "2"
      }
    ]
  },
  {
    "$ref": "1"
  }
]

application/xml, text/xml

Sample:
<ArrayOfWorkplanV2Evaluation xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DHS.PlanCare.Web.Api.Interface.Clientplan">
  <WorkplanV2Evaluation>
    <Content>sample string 6</Content>
    <EndDate>2026-05-26T23:19:51.0244617+02:00</EndDate>
    <EvaluationType>sample string 4</EvaluationType>
    <EvaluationTypeId>5</EvaluationTypeId>
    <Id>1</Id>
    <Scores>
      <Score>
        <Color>1</Color>
        <Description>sample string 2</Description>
        <Value>3</Value>
      </Score>
      <Score>
        <Color>1</Color>
        <Description>sample string 2</Description>
        <Value>3</Value>
      </Score>
    </Scores>
    <StartDate>2026-05-26T23:19:51.0244617+02:00</StartDate>
  </WorkplanV2Evaluation>
  <WorkplanV2Evaluation>
    <Content>sample string 6</Content>
    <EndDate>2026-05-26T23:19:51.0244617+02:00</EndDate>
    <EvaluationType>sample string 4</EvaluationType>
    <EvaluationTypeId>5</EvaluationTypeId>
    <Id>1</Id>
    <Scores>
      <Score>
        <Color>1</Color>
        <Description>sample string 2</Description>
        <Value>3</Value>
      </Score>
      <Score>
        <Color>1</Color>
        <Description>sample string 2</Description>
        <Value>3</Value>
      </Score>
    </Scores>
    <StartDate>2026-05-26T23:19:51.0244617+02:00</StartDate>
  </WorkplanV2Evaluation>
</ArrayOfWorkplanV2Evaluation>