List a Vultr Marketplace app's variables using the Vultr Console or Vultr API to review the names, types, and settings of each configured deployment value.
Listing an application's variables retrieves every user-supplied and password variable configured for it, including each variable's id, needed to update or delete it.
This guide explains how to list an application's variables using the Vultr Console or the Vultr API.
Click Marketplace in the Vultr Console's left-hand menu.
Click the application name to open the Edit App screen.
Click the Variables tab. Verify that the tab lists every variable configured for the app.
Send a GET request to the List Marketplace App Variables endpoint. Replace {app-id} with the app's ID.
$ curl "https://api.vultr.com/v2/marketplace/apps/{app-id}/manage-variables" \
-X GET \
-H "Authorization: Bearer ${VULTR_API_KEY}"
The response contains an app_variables array. Each entry includes the variable's id, name, label, type, and other settings.