How to delete an ASM project

You can delete an existing Mandiant Advantage Attack Surface Management (MA-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.

  • Only project owners have permission to delete an MA-ASM project.
  • The base URL is expected to be https://asm-api.advantage.mandiant.com, unless otherwise specified.


  1. Run the following curl command to get the project uuid.
    curl --location --request GET 'https:\
    //asm-api.advantage.mandiant.com/api/v1/projects' \
    --header 'INTRIGUE_ACCESS_KEY: {{intrigue_access_key}}' \
    --header 'INTRIGUE_SECRET_KEY: {{intrigue_secret_key}}'
  2. Using this uuid, run the following command to delete the project.
    curl --location --request DELETE 'https:\
    //asm-api.advantage.mandiant.com/api/\
    v1/projects/{{uuid}}' \
    --header 'INTRIGUE_ACCESS_KEY: {{intrigue_access_key}}' \
    --header 'INTRIGUE_SECRET_KEY: {{intrigue_secret_key}}'


  • November 7, 2022
  • November 19, 2025
In This Article