GET api/ProviderService/GetAppointmentTypes
Get Appointment Types
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of AppointmentTypeInfo| Name | Description | Type | Additional information |
|---|---|---|---|
| AppointmentType_Id | integer |
None. |
|
| Name | string |
None. |
|
| Abbreviation | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"AppointmentType_Id": 1,
"Name": "sample string 2",
"Abbreviation": "sample string 3"
},
{
"AppointmentType_Id": 1,
"Name": "sample string 2",
"Abbreviation": "sample string 3"
}
]
application/xml, text/xml
Sample:
<ArrayOfAppointmentTypeInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CSP.EMRContexts.Common.ViewModels">
<AppointmentTypeInfo>
<Abbreviation>sample string 3</Abbreviation>
<AppointmentType_Id>1</AppointmentType_Id>
<Name>sample string 2</Name>
</AppointmentTypeInfo>
<AppointmentTypeInfo>
<Abbreviation>sample string 3</Abbreviation>
<AppointmentType_Id>1</AppointmentType_Id>
<Name>sample string 2</Name>
</AppointmentTypeInfo>
</ArrayOfAppointmentTypeInfo>