Guide to closing an open Vultr support ticket using the Tickets API and reference ID.
Closing a support ticket signals that the issue is resolved. The ticket moves to a Feedback status and automatically closes after 48 hours if no additional reply is added. Adding a reply to a ticket in Feedback status reopens it.
This guide covers how to close an open support ticket using the Vultr API.
Send a GET request to the List Tickets endpoint and note the target ticket's reference ID.
$ curl "https://api.vultr.com/v2/tickets" \
-X GET \
-H "Authorization: Bearer ${VULTR_API_KEY}"
Send a POST request to the Close Ticket endpoint to close the ticket.
$ curl "https://api.vultr.com/v2/tickets/{reference}/close" \
-X POST \
-H "Authorization: Bearer ${VULTR_API_KEY}"