POST api/CareQualificationLevels

API interface handling generic JSON requests for CareQualificationLevels

Request Information

URI Parameters

None.

Body Parameters

CareQualificationLevelRequest

CareQualificationLevelRequest
NameDescriptionTypeAdditional information
Id

Request specified appointment by Id

integer

None.

Limit

Limit to number of rows returned by request (default is 100)

integer

None.

Skip

Number of rows to skip (so we can skip 10 get next 10 etc)

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 707,
  "Limit": 534,
  "Skip": 581
}

application/xml, text/xml

Sample:
<CareQualificationLevelRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Turnpoint.Controllers">
  <Id>707</Id>
  <Limit>534</Limit>
  <Skip>581</Skip>
</CareQualificationLevelRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

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": 291,
  "cqLevelName": "sample string 2",
  "cqLevelDetails": "sample string 3",
  "cqLevelOrder": 303,
  "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>291</cqLevelID>
  <cqLevelName>sample string 2</cqLevelName>
  <cqLevelOrder>303</cqLevelOrder>
  <cqLevelRate1>1.1</cqLevelRate1>
  <cqLevelRate2>1.1</cqLevelRate2>
</CareQualificationLevelReportDetails>