GET api/CareQualificationLevels/{id}

Get the details for the specfied Care Qualification ID

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

Unique Care Qaulification ID

integer

Required

Body Parameters

None.

Response Information

Resource Description

CareQualificationLevelReportDetails()

CareQualificationLevelReportDetails
NameDescriptionTypeAdditional information
cqLevelID

integer

None.

cqLevelName

string

None.

cqLevelDetails

string

None.

cqLevelOrder

integer

None.

cqLevelColour

string

None.

cqLevelApptMatch

boolean

None.

cqLevelRate1

decimal number

None.

cqLevelRate2

decimal number

None.

cqLevelDisabled

string

None.

Response Formats

application/json, text/json

Sample:
{
  "cqLevelID": 707,
  "cqLevelName": "sample string 2",
  "cqLevelDetails": "sample string 3",
  "cqLevelOrder": 534,
  "cqLevelColour": "sample string 4",
  "cqLevelApptMatch": true,
  "cqLevelRate1": 1.1,
  "cqLevelRate2": 1.1,
  "cqLevelDisabled": "sample string 5"
}

application/xml, text/xml

Sample:
<CareQualificationLevelReportDetails xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Turnpoint.Controllers">
  <cqLevelApptMatch>true</cqLevelApptMatch>
  <cqLevelColour>sample string 4</cqLevelColour>
  <cqLevelDetails>sample string 3</cqLevelDetails>
  <cqLevelDisabled>sample string 5</cqLevelDisabled>
  <cqLevelID>707</cqLevelID>
  <cqLevelName>sample string 2</cqLevelName>
  <cqLevelOrder>534</cqLevelOrder>
  <cqLevelRate1>1.1</cqLevelRate1>
  <cqLevelRate2>1.1</cqLevelRate2>
</CareQualificationLevelReportDetails>