How to cancel an Appointment
To cancel an appointment, you can simply use the same endpoint that is used to update an appointment. The only parameter that needs to be passed is 'status' with the value "CANCELLED". Please check the example below.
Path parameter:
Parameter Name | Value | Description | Required |
---|---|---|---|
dealerDepartmentUUID | String | Unique identifier of dealer department | Yes |
appointmentUuid | String | Unique identifier of the appointment | Yes |
Authorization
This request requires the following authorization scopes:
Scope | Level | Description |
---|---|---|
appointment.create | DealerDepartment | Authorises client to create appointment for the provided dealer |
Curl to cancel an appointment
curl --location -g --request PATCH 'https://api.mykaarma.com/appointment/v2/department/{{dealerDepartmentUuid}}/appointment/{{appointmentUuid}}' \
--header 'Authorization: {{basic_auth_token}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"appointmentInformation": {
"status":"CANCELLED"
}
}'