POST api/DoctorAppointmentBot/ComfirmBookingAppoinment

Request Information

URI Parameters

None.

Body Parameters

AppointmentBookingMaster
NameDescriptionTypeAdditional information
PatientID

integer

None.

BookingID

string

None.

ID

integer

None.

DoctorID

integer

None.

DepartmentID

integer

None.

Charges

integer

None.

AppointmentDate

date

None.

SlotID

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "PatientID": 1,
  "BookingID": "sample string 2",
  "ID": 3,
  "DoctorID": 4,
  "DepartmentID": 5,
  "Charges": 6,
  "AppointmentDate": "2025-12-22T16:17:07.7054419+05:30",
  "SlotID": 8
}

application/xml, text/xml

Sample:
<AppointmentBookingMaster xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Quereta.Entities.Entities">
  <AppointmentDate>2025-12-22T16:17:07.7054419+05:30</AppointmentDate>
  <BookingID>sample string 2</BookingID>
  <Charges>6</Charges>
  <DepartmentID>5</DepartmentID>
  <DoctorID>4</DoctorID>
  <ID>3</ID>
  <PatientID>1</PatientID>
  <SlotID>8</SlotID>
</AppointmentBookingMaster>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Object

None.

Response Formats

application/json, text/json

Sample:
{}

application/xml, text/xml

Sample:
<z:anyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns:z="http://schemas.microsoft.com/2003/10/Serialization/" />