Unpublish an application from the Vultr Marketplace using the Vultr Console or Vultr API to remove its public listing and stop new customer deployments.
Unpublishing an app makes it private again. Existing customer deployments continue to run. Only new deployments are affected.
This guide explains how to unpublish an app 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 Settings tab. For a public app, the visibility button displays Make Private.
Click the Make Private button.
Verify that the button text changes to Make Public, confirming the app is private.
Send a PATCH request to the Update Marketplace App Visibility endpoint with public set to false. Replace {app-id} with the app's ID.
$ curl "https://api.vultr.com/v2/marketplace/apps/{app-id}/visibility" \
-X PATCH \
-H "Authorization: Bearer ${VULTR_API_KEY}" \
-H "Content-Type: application/json" \
-d '{
"public": false
}'
The response contains the updated app object.