GET PlanCare2Api/WorkplansV2/{workplanId}/AvailableEvaluationScores

Retrieve the evaluation scores of a workplan V2.

Request Information

URI Parameters

Name Description Type Additional 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
Name Description Type Additional information
Id

The id for the workplan evaluation

integer

-

StartDate

The startdate of the evaluation

date

-

EndDate

The enddate of the evaluation

date

-

EvaluationType

The descriptiontype of the evaluation

string

-

EvaluationTypeId

The type id of the evaluation

integer

-

Content

The evaluation text

string

-

Scores

List of scores of this evaluation

Collection of Score

-

Response Formats

application/json, text/json

Sample:
[
  {
    "$id": "1",
    "Id": 1,
    "StartDate": "2026-05-26T22:09:06.7210245+02:00",
    "EndDate": "2026-05-26T22:09:06.7210245+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-26T22:09:06.7210245+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-26T22:09:06.7210245+02:00</StartDate>
  </WorkplanV2Evaluation>
  <WorkplanV2Evaluation>
    <Content>sample string 6</Content>
    <EndDate>2026-05-26T22:09:06.7210245+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-26T22:09:06.7210245+02:00</StartDate>
  </WorkplanV2Evaluation>
</ArrayOfWorkplanV2Evaluation>