Pardon our mess These API docs are a work in progress. Endpoints, examples, and behavior may change as we continue to develop the Partner API v2.

Partner API

Cancel appointment

POST /api/v2/appointments/:appointment_uuid/cancel - Cancels an appointment. Returns 404 if missing or already cancelled.

POST/api/v2/appointments/:appointment_uuid/cancel

Cancels an appointment. Returns 404 if missing or already cancelled.

Required scope: appointments (or *).

Path parameters

NameRequiredDescription
appointment_uuidYesAppointment UUID
curl -s -X POST -H "Authorization: Bearer YOUR_TOKEN" \
  "https://benefitpath.com/api/v2/appointments/c0a80101-0000-4000-8000-000000000002/cancel"
{ "success": true, "cancelled": true }

See Errors for the standard error envelope and rate limits.