Cancel Appointment Action
This action is available in API version 65.0 and later.
Supported REST HTTP Methods
- URI
- /services/data/66.0/connect/health/appointment-management/appointment/{id}
- Formats
- JSON, XML
- HTTP Methods
- PATCH
- Authentication
- Authorization: Bearer Token
Inputs
| Input | Details |
|---|---|
| cancellationReason |
|
| comment |
|
| id |
|
| status |
|
Outputs
| Output | Details |
|---|---|
| errorMessages |
|
| id |
|
| isSuccess |
|
| status |
|
Usage
- PATCH
This sample request is for the Cancel Appointment action.
1{
2 "id": "08xxG000000Axx6YAC",
3 "status": "Cancelled",
4 "cancellationReason": "Patient requested cancellation.",
5 "comment": "Patient will call back to reschedule."
6}This sample response is for the Cancel Appointment action.
1{
2 "id": "08pxx000000Axx6YAC",
3 "isSuccess": true,
4 "status": "Cancelled",
5 "errorMessages": []
6}