GET api/TimSlots?slot_time={slot_time}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| slot_time | string |
Default value is Any |
Body Parameters
None.
Response Information
Resource Description
Collection of SlotPreference| Name | Description | Type | Additional information |
|---|---|---|---|
| rowid | integer |
None. |
|
| slotdatepref | string |
None. |
|
| slotprefval | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"rowid": 1,
"slotdatepref": "sample string 2",
"slotprefval": "sample string 3"
},
{
"rowid": 1,
"slotdatepref": "sample string 2",
"slotprefval": "sample string 3"
}
]
application/xml, text/xml
Sample:
<ArrayOfSlotPreference xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/School.Models">
<SlotPreference>
<rowid>1</rowid>
<slotdatepref>sample string 2</slotdatepref>
<slotprefval>sample string 3</slotprefval>
</SlotPreference>
<SlotPreference>
<rowid>1</rowid>
<slotdatepref>sample string 2</slotdatepref>
<slotprefval>sample string 3</slotprefval>
</SlotPreference>
</ArrayOfSlotPreference>