Cancel Appointment
Overview
This endpoint allows a Patient Facing Consumer App to cancel an appointment on behalf of a patient.
Making a Request
HTTP method: POST
URL: https://{{medicusTenant}}.{{medicusBaseURL}}/pfs-api/v1/patient/{{patientId}}/cancel-appointment
Request Headers
Header | Value | Description |
---|---|---|
|
| The JWT token provided by the Consumer |
| UUID | The unique idempotency key |
URL Parameters
Parameter | Description | Validation Rules |
---|---|---|
| Patient ID e.g. | Mandatory UUID |
Body Parameters
Parameter | Description | Validation Rules |
---|---|---|
| UUID | See List Appointments UUID for details |
| string | The patient specified cancellation reason |
Example Request
POST /pfs-api/v1/patient/dda43bf3-063b-48f6-9960-b9d00021fc34/cancel-appointment
Authorization: Bearer [token]
Idempotency-Key: 14bc8012-3da1-403c-9258-a6c9f5f30bf8
{
"appointmentId": "e9af860e-cf8e-4272-b81a-a95cc8a531f7",
"cancellationReason": "Appointment not required"
}
Response Details
Specific Response Codes
HTTP Code | Error Code | Scenario |
---|---|---|
|
| Cancellation successful |
|
| The appointment is in the past and cannot be cancelled |
|
| The appointment could not be cancelled because the appointment has already been cancelled |
|
| The appointment could not be cancelled because the appointment has been rescheduled |
|
| The appointment could not be cancelled because the appointment has already started |
|
| The appointment could not be cancelled because the appointment is marked as “seen” |
|
| An appointment with that ID could not be found for this patient |
Example Response (Appointment Not Found)
HTTP/1.1 404 Not Found
Content-Type: application/json
{
"errors": [
{
"code": "APPOINTMENT_NOT_FOUND"
"title": "Appointment not found",
"detail": "An appointment with that ID could not be found."
}
]
}
Example Response (Appointment Successfully Cancelled)
HTTP/1.1 200 OK
Content-Type: application/json
{
"success": true
}