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
- Only project owners have permission to delete an ASM project.
- The base URL is expected to be https://www.virustotal.com/api/v3/asm/, unless otherwise specified.
- 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}'
- 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}'
Updated about 5 hours ago