Syntax for Deleting a Reservation
DELETE /api/reservations/{id} deletes an existing reservation with the given ID.
Input
Use the supported input parameters to control the command output.
Parameter | Description |
---|---|
URL | https://$vRA/reservation-service/api/reservations/$reservationId |
Method | Delete |
$vRA |
Specifies the appliance name and fully qualified domain name, or IP address of the vRealize Automation server. |
$token |
Specifies a valid HTTP bearer token with necessary credentials. |
$reservationId | Specifies the unique identifier of the reservation to delete. For information about how to obtain the reservation ID, see Syntax for Displaying a List of Reservations. |
Output
If the command is successful, the HTTP response body is empty except for a 204 No Content status statement.
curl Command
The following example command deletes a reservation with an ID of 94d74105-831a-4598-8f42-efd590fea15c.
curl –X “Delete” --insecure -H "Accept:application/json" -H "Authorization: Bearer $token" https://$vRA/reservation-service/api/reservations/94d74105-831a-4598-8f42-efd590fea15c
JSON Output
If the command is successful, the HTTP response body is empty except for a 204 No Content status statement.