GET api/PatientAppointment/Details/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
PatientAppointment| Name | Description | Type | Additional information |
|---|---|---|---|
| AppID | decimal number |
None. |
|
| Sno | decimal number |
None. |
|
| UHIDNO | string |
None. |
|
| Title | string |
None. |
|
| PatientName | string |
None. |
|
| DrID | string |
None. |
|
| TimeSlotID | decimal number |
None. |
|
| AppointmentDate | date |
None. |
|
| SchTime | date |
None. |
|
| Phone | string |
None. |
|
| AppointmentType | string |
None. |
|
| EntryPerson | string |
None. |
|
| ActiveStatus | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"AppID": 1.0,
"Sno": 2.0,
"UHIDNO": "sample string 3",
"Title": "sample string 4",
"PatientName": "sample string 5",
"DrID": "sample string 6",
"TimeSlotID": 7.0,
"AppointmentDate": "2025-12-21T15:31:30.1889107+05:30",
"SchTime": "2025-12-21T15:31:30.1889107+05:30",
"Phone": "sample string 10",
"AppointmentType": "sample string 11",
"EntryPerson": "sample string 12",
"ActiveStatus": true
}
application/xml, text/xml
Sample:
<PatientAppointment xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PolyClinicClass"> <ActiveStatus>true</ActiveStatus> <AppID>1</AppID> <AppointmentDate>2025-12-21T15:31:30.1889107+05:30</AppointmentDate> <AppointmentType>sample string 11</AppointmentType> <DrID>sample string 6</DrID> <EntryPerson>sample string 12</EntryPerson> <PatientName>sample string 5</PatientName> <Phone>sample string 10</Phone> <SchTime>2025-12-21T15:31:30.1889107+05:30</SchTime> <Sno>2</Sno> <TimeSlotID>7</TimeSlotID> <Title>sample string 4</Title> <UHIDNO>sample string 3</UHIDNO> </PatientAppointment>