Delete a gallery image from a Vultr Marketplace app using the Vultr Console or Vultr API to remove outdated artwork from the app's public landing page.
Deleting a gallery image is permanent. Deleted gallery images cannot be recovered.
This guide explains how to delete a gallery image 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 Gallery tab.
Click the trashcan icon on the thumbnail you want to remove.
Verify that the thumbnail no longer appears in the Gallery tab.
Send a DELETE request to the Delete Marketplace App Gallery Image endpoint. Replace {app-id} with the app's ID and {image-id} with the image's ID.
$ curl "https://api.vultr.com/v2/marketplace/apps/{app-id}/images/{image-id}" \
-X DELETE \
-H "Authorization: Bearer ${VULTR_API_KEY}"
A successful request returns an HTTP 204 No Content response.