Cancels an existing appointment. The appointment must be in a Pending or Confirmed state and more than 3 hours away. A cancellation reason is required, and if the reason is "Other" a note must also be provided. A $50 cancellation fee applies.
Security
BearerAuth
- Mock serverhttps://docs.speedysticks.com/_mock/openapi/api/cancel-appointment
- Productionhttps://api.speedysticks.com/api/cancel-appointment
curl -i -X POST \
https://docs.speedysticks.com/_mock/openapi/api/cancel-appointment \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"appointmentId": 1,
"cancellationReasonId": 3,
"note": "Patient called to explain specific circumstances."
}'Response
{ "message": "Appointment canceled successfully" }