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:
| Field | Required | Description |
|---|---|---|
| id | Yes | Number field that identifies the appointment, necessary to modify an appointment. |
| status | Yes | Enum field representing the current status of the appointment. (scheduled,confirmation,follow-up,completed or canceled) |
Example
{
"id": 30,
"status": "completed",
}