POST api/hms/drappscheduleTime
Request Information
URI Parameters
None.
Body Parameters
AppScheduleTimeFilter| Name | Description | Type | Additional information |
|---|---|---|---|
| AppointmentDate | string |
None. |
|
| DoctorCode | string |
None. |
|
| FacilityCode | string |
None. |
|
| Slots | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"AppointmentDate": "sample string 1",
"DoctorCode": "sample string 2",
"FacilityCode": "sample string 3",
"Slots": "sample string 4"
}
text/html
Sample:
{"AppointmentDate":"sample string 1","DoctorCode":"sample string 2","FacilityCode":"sample string 3","Slots":"sample string 4"}
application/xml, text/xml
Sample:
<AppScheduleTimeFilter xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MobileWebAPI.Models"> <AppointmentDate>sample string 1</AppointmentDate> <DoctorCode>sample string 2</DoctorCode> <FacilityCode>sample string 3</FacilityCode> <Slots>sample string 4</Slots> </AppScheduleTimeFilter>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Collection of AppointmentScheduleTimeResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| SlotTime | date |
None. |
|
| Duration | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"SlotTime": "2026-01-15T00:01:52.00074+05:30",
"Duration": "sample string 2"
},
{
"SlotTime": "2026-01-15T00:01:52.00074+05:30",
"Duration": "sample string 2"
}
]
text/html
Sample:
[{"SlotTime":"2026-01-15T00:01:52.00074+05:30","Duration":"sample string 2"},{"SlotTime":"2026-01-15T00:01:52.00074+05:30","Duration":"sample string 2"}]
application/xml, text/xml
Sample:
<ArrayOfAppointmentScheduleTimeResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MobileWebAPI.Models">
<AppointmentScheduleTimeResponse>
<Duration>sample string 2</Duration>
<SlotTime>2026-01-15T00:01:52.00074+05:30</SlotTime>
</AppointmentScheduleTimeResponse>
<AppointmentScheduleTimeResponse>
<Duration>sample string 2</Duration>
<SlotTime>2026-01-15T00:01:52.00074+05:30</SlotTime>
</AppointmentScheduleTimeResponse>
</ArrayOfAppointmentScheduleTimeResponse>