GET api/Appoinment/GetAppoinmentTypes

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

ResponseAppoinmentTypes
NameDescriptionTypeAdditional information
data

Collection of AppoinmentType

None.

success

string

None.

error_message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "data": [
    {
      "appointment_type_id": 1,
      "appointment_type": "sample string 2"
    },
    {
      "appointment_type_id": 1,
      "appointment_type": "sample string 2"
    }
  ],
  "success": "sample string 1",
  "error_message": "sample string 2"
}

application/xml, text/xml

Sample:
<ResponseAppoinmentTypes xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PartnerNetwork.Models">
  <error_message>sample string 2</error_message>
  <success>sample string 1</success>
  <data>
    <AppoinmentType>
      <appointment_type>sample string 2</appointment_type>
      <appointment_type_id>1</appointment_type_id>
    </AppoinmentType>
    <AppoinmentType>
      <appointment_type>sample string 2</appointment_type>
      <appointment_type_id>1</appointment_type_id>
    </AppoinmentType>
  </data>
</ResponseAppoinmentTypes>