Booking Data Type

Appointment booking request.

Properties
name data type description
location number Returns the practice location identifier.
schedule number Returns the schedule identifier.
appointmentType number Returns the appointment type.
start string Returns the appointment start time.
end string Returns the appointment end time.
title string Returns the customer title.
firstName string Returns the customer first name.
lastName string Returns the customer last name.
email string Returns the customer email.
phone string Returns the customer phone number.
mobile string Returns the customer mobile number.
patientName string Returns the patient name.
notes string Returns the notes.

Example

{
  "location" : 12345,
  "schedule" : 12345,
  "appointmentType" : 12345,
  "start" : "...",
  "end" : "...",
  "title" : "...",
  "firstName" : "...",
  "lastName" : "...",
  "email" : "...",
  "phone" : "...",
  "mobile" : "...",
  "patientName" : "...",
  "notes" : "..."
}