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.
- 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}}' - 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}}'