> ## Documentation Index
> Fetch the complete documentation index at: https://docs.oasm.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Bulk dismiss vulnerabilities

> Dismisses multiple security vulnerabilities identified within the system, removing them from active tracking and analysis.



## OpenAPI

````yaml /api-reference/openapi.json post /api/vulnerabilities/dismiss
openapi: 3.0.0
info:
  title: Open Attack Surface Management
  description: Open-source platform for cybersecurity Attack Surface Management (ASM)
  version: '1.0'
  contact: {}
servers:
  - url: https://{baseUrl}/api/v1
    variables:
      baseUrl:
        default: localhost:3000
        description: API server hostname with port (e.g. localhost:3000, api.example.com)
security: []
tags: []
externalDocs:
  description: Authentication Docs
  url: auth/docs
paths:
  /api/vulnerabilities/dismiss:
    post:
      tags:
        - Vulnerabilities
      summary: Bulk dismiss vulnerabilities
      description: >-
        Dismisses multiple security vulnerabilities identified within the
        system, removing them from active tracking and analysis.
      operationId: VulnerabilitiesController_bulkDismissVulnerabilities
      parameters:
        - name: X-Workspace-Id
          in: header
          description: Workspace ID
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BulkDismissVulnerabilitiesDto'
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                allOf:
                  - $ref: '#/components/schemas/AppResponseSerialization'
                type: array
                items:
                  $ref: '#/components/schemas/VulnerabilityDismissal'
components:
  schemas:
    BulkDismissVulnerabilitiesDto:
      type: object
      properties:
        ids:
          type: array
          items:
            type: string
        reason:
          type: string
          enum:
            - false_positive
            - used_in_test
            - wont_fix
        comment:
          type: string
          nullable: true
      required:
        - ids
        - reason
        - comment
    AppResponseSerialization:
      type: object
      properties: {}
    VulnerabilityDismissal:
      type: object
      properties:
        id:
          type: string
        createdAt:
          format: date-time
          type: string
        updatedAt:
          format: date-time
          type: string
        vulnerabilityId:
          type: string
        userId:
          type: string
        reason:
          type: string
          enum:
            - false_positive
            - used_in_test
            - wont_fix
        comment:
          type: string
        user:
          $ref: '#/components/schemas/User'
        vulnerability:
          $ref: '#/components/schemas/Vulnerability'
      required:
        - id
        - createdAt
        - updatedAt
        - vulnerabilityId
        - userId
        - reason
        - comment
        - user
        - vulnerability
    User:
      type: object
      properties:
        id:
          type: string
        createdAt:
          format: date-time
          type: string
        updatedAt:
          format: date-time
          type: string
        name:
          type: string
        role:
          type: string
          enum:
            - admin
            - user
            - bot
      required:
        - id
        - createdAt
        - updatedAt
        - name
        - role
    Vulnerability:
      type: object
      properties:
        id:
          type: string
        createdAt:
          format: date-time
          type: string
        updatedAt:
          format: date-time
          type: string
        name:
          type: string
        description:
          type: string
        synopsis:
          type: string
        severity:
          type: string
          enum:
            - info
            - low
            - medium
            - high
            - critical
        tags:
          type: array
          items:
            type: string
        references:
          type: array
          items:
            type: string
        authors:
          type: array
          items:
            type: string
        affectedUrl:
          type: string
        ipAddress:
          type: string
        host:
          type: string
        ports:
          type: array
          items:
            type: string
        cvssMetric:
          type: string
        cvssScore:
          type: number
        epssScore:
          type: number
        vprScore:
          type: number
        cveId:
          type: array
          items:
            type: string
        bidId:
          type: array
          items:
            type: string
        cweId:
          type: array
          items:
            type: string
        ceaId:
          type: array
          items:
            type: string
        iava:
          type: array
          items:
            type: string
        cveUrl:
          type: string
        cweUrl:
          type: string
        solution:
          type: string
        extractorName:
          type: string
        extractedResults:
          type: array
          items:
            type: string
        publicationDate:
          format: date-time
          type: string
        modificationDate:
          format: date-time
          type: string
        firstDetectedDate:
          format: date-time
          type: string
        lastSeenDate:
          format: date-time
          type: string
        tool:
          $ref: '#/components/schemas/Tool'
        asset:
          $ref: '#/components/schemas/Asset'
        vulnerabilityDismissal:
          $ref: '#/components/schemas/VulnerabilityDismissal'
        analyzeStatus:
          type: string
          enum:
            - not_analyzed
            - running
            - done
            - failed
        analyzeResult:
          type: string
      required:
        - id
        - createdAt
        - updatedAt
        - name
        - description
        - synopsis
        - severity
        - tags
        - references
        - authors
        - affectedUrl
        - ipAddress
        - host
        - ports
        - cvssMetric
        - cvssScore
        - epssScore
        - vprScore
        - cveId
        - bidId
        - cweId
        - ceaId
        - iava
        - cveUrl
        - cweUrl
        - solution
        - extractorName
        - extractedResults
        - publicationDate
        - modificationDate
        - firstDetectedDate
        - lastSeenDate
        - tool
        - asset
        - vulnerabilityDismissal
        - analyzeStatus
        - analyzeResult
    Tool:
      type: object
      properties:
        id:
          type: string
        createdAt:
          format: date-time
          type: string
        updatedAt:
          format: date-time
          type: string
        name:
          type: string
        description:
          type: string
        command:
          type: string
        category:
          type: string
          enum:
            - subdomains
            - http_probe
            - ports_scanner
            - vulnerabilities
            - screenshot
            - classifier
            - assistant
        version:
          type: string
        logoUrl:
          type: string
          nullable: true
        isBuiltIn:
          type: boolean
        isInstalled:
          type: boolean
        isOfficialSupport:
          type: boolean
        type:
          type: string
          enum:
            - built_in
            - provider
        providerId:
          type: string
        availableWorkersCount:
          type: number
      required:
        - id
        - createdAt
        - updatedAt
        - name
        - description
        - command
        - category
        - version
        - isBuiltIn
        - isInstalled
        - isOfficialSupport
        - type
        - providerId
    Asset:
      type: object
      properties:
        id:
          type: string
        createdAt:
          format: date-time
          type: string
        updatedAt:
          format: date-time
          type: string
        value:
          type: string
        targetId:
          type: string
        isPrimary:
          type: boolean
        dnsRecords:
          type: object
        isEnabled:
          type: boolean
      required:
        - id
        - createdAt
        - updatedAt
        - value
        - targetId
        - isPrimary
        - dnsRecords
        - isEnabled

````