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

# Dismiss Action

> Dismisses a pending Proactive action owned by the caller. Mirrors the dismiss action in the UI.



## OpenAPI

````yaml /api-reference/openapi.json post /actions/{action_uuid}/dismiss
openapi: 3.0.1
info:
  title: Attention Service V2
  description: Attention Service API V2
  termsOfService: https://www.attention.com/terms-of-use
  contact:
    name: Attention Team
    url: https://docs.attention.com/welcome
    email: support@attention.com
  license:
    name: Apache 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0.html
  version: 1.8.0
servers:
  - url: https://api.attention.tech/v2
security:
  - APIKeyHeader: []
paths:
  /actions/{action_uuid}/dismiss:
    post:
      tags:
        - Proactive
      summary: Dismiss Action
      description: >-
        Dismisses a pending Proactive action owned by the caller. Mirrors the
        dismiss action in the UI.
      operationId: dismissProactiveAction
      parameters:
        - name: action_uuid
          in: path
          description: Unique identifier of the action to dismiss
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Action dismissed (or already not pending)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProactiveActionMutationResponse'
        '401':
          description: Authentication failed - valid API key required
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: Action not found or not owned by the caller
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        default:
          description: Unexpected error occurred while processing the request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    ProactiveActionMutationResponse:
      type: object
      properties:
        action_uuid:
          type: string
          description: Unique identifier of the action that was mutated
        updated:
          type: boolean
          description: >-
            True when the action transitioned state; false when it was already
            not pending (idempotent no-op)
      example:
        action_uuid: 3fa85f64-5717-4562-b3fc-2c963f66afa6
        updated: true
    Error:
      type: object
      properties:
        id:
          type: string
          description: A unique identifier for the error.
        status:
          type: string
          description: >-
            The HTTP status code applicable to this problem, expressed as a
            string value.
        code:
          type: string
          description: An application-specific error code, expressed as a string value.
        title:
          type: string
          description: A short, human-readable summary of the problem.
        detail:
          type: string
          description: >-
            A human-readable explanation specific to this occurrence of the
            problem.
        source:
          type: object
          properties:
            pointer:
              type: string
            parameter:
              type: string
        meta:
          type: object
          properties: {}
      example:
        id: not_found_error
        status: '404'
        code: '404'
        title: Not Found Error
        detail: The requested resource was not found
        source:
          pointer: /data/attributes/id
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      name: Authorization
      in: header

````