How to delete an ASM project

You can delete an existing Attack Surface Management (ASM) project using the Attack Surface Management (ASM) API if you are the owner of this project. If you need assistance with this process, contact Support.

ℹ️

Collection configuration

  1. Run the following curl command to get the project uuid.
    curl --request GET \
     --url https://www.virustotal.com/api/v3/asm/projects \
     --header 'accept: application/json' \
     --header 'x-apikey: {x-apikey}'
  1. Using this uuid, run the following command to delete the project.
    curl --request DELETE \
     --url https://www.virustotal.com/api/v3/asm/projects/{uuid} \
     --header 'accept: application/json' \
     --header 'x-apikey: {x-apikey}'