GET PlanCare2Api/WorkplansV2/{workplanId}/AvailableEvaluationScores

Retrieve the evaluation scores of a workplan V2.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
workplanId

The workplan V2 ID.

integer

Required

Body Parameters

None.

Response Information

Resource Description

A List of workplan V2 evaluation scores.

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 descriptiontype 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-26T21:11:23.6077408+02:00",
    "EndDate": "2026-05-26T21:11:23.6077408+02:00",
    "EvaluationType": "sample string 4",
    "EvaluationTypeId": 5,
    "Content": "sample string 6",
    "Scores": [
      {
        "$id": "2",
        "Color": 1,
        "Description": "sample string 2",
        "Value": 3,
        "Rank": 4,
        "Name": "sample string 5"
      },
      {
        "$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-26T21:11:23.6077408+02:00</EndDate>
    <EvaluationType>sample string 4</EvaluationType>
    <EvaluationTypeId>5</EvaluationTypeId>
    <Id>1</Id>
    <Scores>
      <Score>
        <Color>1</Color>
        <Description>sample string 2</Description>
        <Name>sample string 5</Name>
        <Rank>4</Rank>
        <Value>3</Value>
      </Score>
      <Score>
        <Color>1</Color>
        <Description>sample string 2</Description>
        <Name>sample string 5</Name>
        <Rank>4</Rank>
        <Value>3</Value>
      </Score>
    </Scores>
    <StartDate>2026-05-26T21:11:23.6077408+02:00</StartDate>
  </WorkplanV2Evaluation>
  <WorkplanV2Evaluation>
    <Content>sample string 6</Content>
    <EndDate>2026-05-26T21:11:23.6077408+02:00</EndDate>
    <EvaluationType>sample string 4</EvaluationType>
    <EvaluationTypeId>5</EvaluationTypeId>
    <Id>1</Id>
    <Scores>
      <Score>
        <Color>1</Color>
        <Description>sample string 2</Description>
        <Name>sample string 5</Name>
        <Rank>4</Rank>
        <Value>3</Value>
      </Score>
      <Score>
        <Color>1</Color>
        <Description>sample string 2</Description>
        <Name>sample string 5</Name>
        <Rank>4</Rank>
        <Value>3</Value>
      </Score>
    </Scores>
    <StartDate>2026-05-26T21:11:23.6077408+02:00</StartDate>
  </WorkplanV2Evaluation>
</ArrayOfWorkplanV2Evaluation>