action onsched_put_consumer_v1_appointments_id_confirm { label: "Confirm Appointment" description: "

Use this endpoint to Confirm an appointment. This updates the boolean confirmed field to TRUE. NOTE: If the appointment status is set to \"RS\", Reserved, it also updates the status of the appointment to \"BK\", Booked.

\n

For more information: Appointment Overview

" provider: onsched method: PUT path: "/consumer/v1/appointments/{id}/confirm" encoding: json input: { type: "object" properties: { id: { type: "integer" format: "int32" } undo: { type: "boolean" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }