Confirmar una cita
Appointments
POST /v1/scheduling/appointments/:id/confirm
Confirm an appointment, moving it from pending to confirmed. Returns 409 if the appointment isn’t in pending.
POST
Confirmar una cita
Moves the appointment from
No body required.
pending to confirmed. The call reads the current appointment first and rejects with 409 if the state isn’t pending (you can’t confirm an appointment that’s already confirmed, completed, or cancelled).
Endpoint
Required scope
scheduling:appointments:confirm
Path params
| Param | Type | Description |
|---|---|---|
id | string | Appointment id. |
Headers
| Header | Required | Value |
|---|---|---|
Authorization | Yes | Bearer kbai_pk_<token> |
Example request
Response
200 OK
Returns the appointment withstatus: "confirmed". Shape identical to the body of GET /appointments/:id.