action onsched_put_consumer_v1_appointments_id_noshow { label: "Set NoShow Status" description: "

Use this endpoint to change the status of an appointment from \"BK\", Booked to \"NS\", NoShow. This gives API consumers a way to internally track No Show appointments. It provides no added functionality in OnSched.

\n

For more information: Appointment Overview

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