Skip to main content

Submit a support ticket from the CLI

Create and manage support tickets using the Vantage CLI.

Submit a support ticket from the CLI

This guide covers creating, listing, and managing support tickets using the vantage support-ticket CLI command.

Prerequisites

  • The Vantage CLI installed and authenticated (see CLI reference)

Available commands

vantage support-ticket [OPTIONS] COMMAND [ARGS]...
CommandDescription
createCreate a new support ticket
listList all support tickets
getGet details of a specific support ticket
updateUpdate a support ticket
deleteDelete a support ticket

Run vantage support-ticket --help or vantage support-ticket <command> --help for full option details.

Create a ticket

vantage support-ticket create \
--title "Connection timeout error when submitting GPU compute jobs" \
--description "Job submissions to cluster prod-gpu-01 fail with a 30s timeout since 2024-06-01. Affects all users. No changes to cluster config." \
--priority high

Choose a priority that matches the impact:

PriorityWhen to use
criticalFull work stoppage, entire system down
highProduction system down, blocking critical operations
mediumFeature not working but a workaround exists
lowMinor issue or enhancement request
minimalCosmetic issue or general question

List tickets

vantage support-ticket list

Get ticket details

vantage support-ticket get <ticket-id>

Update a ticket

vantage support-ticket update <ticket-id> --priority critical

Delete a ticket

vantage support-ticket delete <ticket-id>
Ask AI
Ask a question about Vantage Compute...