Skip to main content

Update Status


To update the status of one appointment you can use the next path


POST {base_url}/appointment/updateStatus

The body allows the following fields:

FieldRequiredDescription
idYesNumber field that identifies the appointment, necessary to modify an appointment.
statusYesEnum field representing the current status of the appointment. (scheduled,confirmation,follow-up,completed or canceled)

Example

{
"id": 30,
"status": "completed",
}