Skip to content

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.

This endpoint requires authentication. You must include a valid API key in the request header. Permission(s) Required: VIEW_APPOINTMENTS

{
"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.