Skip to main content
DELETE
/
api
/
v1
/
issues
/
bulk
Bulk delete issues
curl --request DELETE \
  --url https://neo.api.projectdiscovery.io/api/v1/issues/bulk \
  --header 'Content-Type: application/json' \
  --data '
{
  "filters": {
    "affected_host": "<string>",
    "assignee": "<string>",
    "component": "<string>",
    "confidence": [
      "confirmed"
    ],
    "created_after": "2023-11-07T05:31:56Z",
    "created_before": "2023-11-07T05:31:56Z",
    "cve_id": "<string>",
    "cwe_id": "<string>",
    "host": "<string>",
    "ip_address": "<string>",
    "max_cvss": 123,
    "min_affected": 123,
    "min_cvss": 123,
    "port": 123,
    "priority": [
      "critical"
    ],
    "project_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "search": "<string>",
    "severity": [
      "critical"
    ],
    "source": [
      "<string>"
    ],
    "status": [
      "unverified"
    ],
    "tags": [
      "<string>"
    ],
    "target": "<string>",
    "target_type": "<string>",
    "task_id": "<string>",
    "template_id": "<string>",
    "type": [
      "vulnerability"
    ]
  },
  "issue_ids": [
    "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  ]
}
'
{
  "deleted": 123,
  "matched": 123,
  "issue_ids": [
    "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.neo.projectdiscovery.io/llms.txt

Use this file to discover all available pages before exploring further.

Body

application/json

At least one of issue_ids or filters is required. When both are provided, only issues matching both inputs are deleted.

filters
object

Delete issues matching these filters.

issue_ids
string<uuid>[]

Explicit issue IDs to delete. Maximum 1000 IDs per request.

Required array length: 1 - 1000 elements

Response

Bulk delete result

deleted
integer
required

Number of issues deleted.

matched
integer
required

Number of issues selected for deletion.

issue_ids
string<uuid>[]

IDs of issues deleted.