Edit Appointment Date
POST /api/dashboard/appointments/changeDate
Section titled “ /api/dashboard/appointments/changeDate”This endpoint allows you to update the date and time of an existing appointment.
An appointment can be edited if it has already been approved or not.
Security
Section titled “Security”This endpoint requires authentication. You must include a valid API key in the request header.
Permission(s) Required: VIEW_APPOINTMENTS
Request Body
Section titled “Request Body”{ "id": string, "startTimestamp": timestamp, "endTimestamp": timestamp}
id
UUID of the appointment.
startTimestamp
Unix Epoch format (millis). This is the start time of the appointment.
endTimestamp
Unix Epoch format (millis). This is the end time of the appointment.