GET PlanCare2Api/RootData/AvailableEvaluationTypes

Fetch available evaluation types

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Returns a list of available evaluation types

Collection of EvaluationType
NameDescriptionTypeAdditional information
Id

The internal id of the evaluation type

integer

None

Name

The name of the evaluation type

string

None

Description

The description of the evaluation type

string

None

Response Formats

application/json, text/json

Sample:
[
  {
    "$id": "1",
    "Id": 1,
    "Name": "sample string 2",
    "Description": "sample string 3"
  },
  {
    "$ref": "1"
  }
]

application/xml, text/xml

Sample:
<ArrayOfEvaluationType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DHS.PlanCare.Web.Api.Interface.RootData">
  <EvaluationType>
    <Description>sample string 3</Description>
    <Id>1</Id>
    <Name>sample string 2</Name>
  </EvaluationType>
  <EvaluationType>
    <Description>sample string 3</Description>
    <Id>1</Id>
    <Name>sample string 2</Name>
  </EvaluationType>
</ArrayOfEvaluationType>