Deleting a reserved IP detaches it from any linked instances and removes it from your Vultr account. You can re-create a reserved IP after deletion if it's available in the specific Vultr location.
Follow this guide to delete a reserved IP using the Vultr Customer Portal, API, or CLI.
Navigate to Products, expand the Network drop-down and select Reserved IPs from the list of options.
Click your target reserved IP to open its management page.
Click Remove Reserved IP in the top-right corner.
Click Remove Reserved IP in the confirmation prompt to delete the reserved IP.
Send a GET
request to the List Reserved IPs endpoint and note the target reserved IP's ID in your output.
$ curl "https://api.vultr.com/v2/reserved-ips" \
-X GET \
-H "Authorization: Bearer ${VULTR_API_KEY}"
Send a DELETE
request to the Delete Reserved IP endpoint to delete the reserved IP.
$ curl "https://api.vultr.com/v2/reserved-ips/{reserved-ip}" \
-X DELETE \
-H "Authorization: Bearer ${VULTR_API_KEY}"
List all reserved IPs in your Vultr account and note the target reserved IP's ID.
$ vultr-cli reserved-ip list
Delete the reserved IP.
$ vultr-cli reserved-ip delete <reserved-ip-id>