How to Create a Vultr Support Ticket

Updated on 18 March, 2026

Guide to creating a new Vultr support ticket using the Tickets API with subject and description.


Creating a support ticket initiates a new support request with the Vultr team. Each ticket requires a subject line and a description that serves as the first entry in the ticket conversation.

This guide covers how to create a new support ticket using the Vultr API.

  1. Send a POST request to the Create Ticket endpoint with the ticket subject and description in the request body.

    console
    $ curl "https://api.vultr.com/v2/tickets" \
      -X POST \
      -H "Authorization: Bearer ${VULTR_API_KEY}" \
      -H "Content-Type: application/json" \
      --data '{
        "subject": "Ticket subject",
        "description": "Detailed text describing the reason for this ticket."
      }'
    

Comments