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

# Dismiss Actionable

> Dismiss an actionable recommendation so it no longer appears in the active feed. Dismissed actionables free up slots for new ones to be generated on the next mention check (max 30 active per entity).



## OpenAPI

````yaml post /entities/actions/dismiss
openapi: 3.1.0
info:
  title: Geogen API
  description: >-
    API for accessing LLM visibility data, managing entities, and tracking AI
    mentions.
  version: 1.0.0
servers:
  - url: https://api.geogen.io/v1
    description: Production server
security:
  - bearerAuth: []
paths:
  /entities/actions/dismiss:
    post:
      tags:
        - Actions
      summary: Dismiss Actionable
      description: >-
        Dismiss an actionable recommendation so it no longer appears in the
        active feed. Dismissed actionables free up slots for new ones to be
        generated on the next mention check (max 30 active per entity).
      operationId: dismissActionable
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - actionableId
              properties:
                actionableId:
                  type: string
                  description: The actionable ID to dismiss
      responses:
        '200':
          description: Actionable dismissed successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
              example:
                success: true
        '400':
          description: Bad request — missing actionableId
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Error:
      type: object
      properties:
        error:
          type: string
          description: Error message
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: 'API key authentication. Format: Bearer wsk_your_api_key'

````