POST api/TimeSlotMaster/Create
Request Information
URI Parameters
None.
Body Parameters
TimeSlotMaster| Name | Description | Type | Additional information |
|---|---|---|---|
| MasterTimeSlotID | integer |
None. |
|
| DrId | string |
None. |
|
| Day | string |
None. |
|
| SlotNo | string |
None. |
|
| StartTime | time interval |
None. |
|
| EndTime | time interval |
None. |
|
| PatByTel | decimal number |
None. |
|
| PatByWalk | decimal number |
None. |
|
| Availability | boolean |
None. |
|
| EntryDate | date |
None. |
|
| EntryPerson | string |
None. |
|
| ActiveStatus | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"MasterTimeSlotID": 1,
"DrId": "sample string 2",
"Day": "sample string 3",
"SlotNo": "sample string 4",
"StartTime": "00:00:00.1234567",
"EndTime": "00:00:00.1234567",
"PatByTel": 7.0,
"PatByWalk": 8.0,
"Availability": true,
"EntryDate": "2025-12-21T15:25:39.0264439+05:30",
"EntryPerson": "sample string 11",
"ActiveStatus": true
}
application/xml, text/xml
Sample:
<TimeSlotMaster xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PolyClinicClass"> <ActiveStatus>true</ActiveStatus> <Availability>true</Availability> <Day>sample string 3</Day> <DrId>sample string 2</DrId> <EndTime>PT0.1234567S</EndTime> <EntryDate>2025-12-21T15:25:39.0264439+05:30</EntryDate> <EntryPerson>sample string 11</EntryPerson> <MasterTimeSlotID>1</MasterTimeSlotID> <PatByTel>7</PatByTel> <PatByWalk>8</PatByWalk> <SlotNo>sample string 4</SlotNo> <StartTime>PT0.1234567S</StartTime> </TimeSlotMaster>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.