POST api/AppointmentServiceTypes

API interface handling generic JSON requests for AppointmentServiceTypes

Request Information

URI Parameters

None.

Body Parameters

AppointmentServiceTypeRequest

AppointmentServiceTypeRequest
NameDescriptionTypeAdditional information
Id

Request specified appointment by Id

integer

None.

NDISGroup

Return details for Service types with given list of NDIS Codes (comma separated)

integer

None.

Code

Return details for Service types with given list of codes (comma separated)

string

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,
  "NDISGroup": 534,
  "Code": "sample string 2",
  "Limit": 581,
  "Skip": 291
}

application/xml, text/xml

Sample:
<AppointmentServiceTypeRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Turnpoint.Controllers">
  <Code>sample string 2</Code>
  <Id>707</Id>
  <Limit>581</Limit>
  <NDISGroup>534</NDISGroup>
  <Skip>291</Skip>
</AppointmentServiceTypeRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

AppointmentServiceTypeReportDetails()

AppointmentServiceTypeReportDetails
NameDescriptionTypeAdditional information
servicetypeID

integer

None.

servicetypeName

string

None.

servicetypeNDISGroup

integer

None.

servicetypeCode

string

None.

servicetypePackage

integer

None.

servicetypePayrollCode

string

None.

servicetypeDescode

string

None.

servicetypePayType

string

None.

Response Formats

application/json, text/json

Sample:
{
  "servicetypeID": 303,
  "servicetypeName": "sample string 2",
  "servicetypeNDISGroup": 776,
  "servicetypeCode": "sample string 3",
  "servicetypePackage": 15,
  "servicetypePayrollCode": "sample string 4",
  "servicetypeDescode": "sample string 5",
  "servicetypePayType": "sample string 6"
}

application/xml, text/xml

Sample:
<AppointmentServiceTypeReportDetails xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Turnpoint.Controllers">
  <servicetypeCode>sample string 3</servicetypeCode>
  <servicetypeDescode>sample string 5</servicetypeDescode>
  <servicetypeID>303</servicetypeID>
  <servicetypeNDISGroup>776</servicetypeNDISGroup>
  <servicetypeName>sample string 2</servicetypeName>
  <servicetypePackage>15</servicetypePackage>
  <servicetypePayType>sample string 6</servicetypePayType>
  <servicetypePayrollCode>sample string 4</servicetypePayrollCode>
</AppointmentServiceTypeReportDetails>