How to Delete a Build

Updated on 05 August, 2026

Delete a Vultr Marketplace application build using the Vultr Console or Vultr API to remove unused or failed image builds from your vendor application.


Deleting a build removes it from the application. You cannot delete a Live build. Unpublish it first.

This guide explains how to delete a build using the Vultr Console or the Vultr API.

  • Vultr Console
  • Vultr API
  1. Click Marketplace in the Vultr Console's left-hand menu.

  2. Click the application name to open the Edit App screen.

  3. Click the Builds tab.

  4. Select the actions menu on the build you want to remove and choose Delete Image.

    Verify that the build no longer appears in the Builds list. Deleting a build does not delete the associated snapshot.

Send a DELETE request to the Delete Marketplace App Build Image endpoint. Replace {app-id} with the app's ID and {build-id} with the build's ID.

console
$ curl "https://api.vultr.com/v2/marketplace/apps/{app-id}/builds/{build-id}" \
    -X DELETE \
    -H "Authorization: Bearer ${VULTR_API_KEY}"

A successful request returns an HTTP 204 No Content response.

Comments