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

# Dismiss Deep Research Insight Mode

> Record a thumbs-down on one failure mode.



## OpenAPI

````yaml post /observability/v1/deep-research-insights/dismiss_mode/
openapi: 3.1.0
info:
  title: Cekura API
  version: v1
  description: >-
    Complete API documentation for the Cekura platform. This API provides
    endpoints for testing, observing, and evaluating AI voice agents — including
    managing agents, running evaluators, defining metrics, and analyzing call
    quality.
servers:
  - url: https://api.cekura.ai
security: []
paths:
  /observability/v1/deep-research-insights/dismiss_mode/:
    post:
      tags:
        - observability
      summary: Dismiss a Deep Research failure mode
      description: >-
        Suppress one Deep Research failure mode across the project — matched by
        `mode_title`, it is hidden from every subsequent render of every insight
        in the project. Scope with `project`; `note` is optional. ⚠ There is no
        undo via this API.
      operationId: deep-research-insights-dismiss-mode-create
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DeepResearchModeDismissalCreate'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/DeepResearchModeDismissalCreate'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/DeepResearchModeDismissalCreate'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeepResearchModeDismissalCreate'
          description: ''
      security:
        - api_key: []
components:
  schemas:
    DeepResearchModeDismissalCreate:
      type: object
      description: Request body for thumbs-down submission.
      properties:
        project:
          type: integer
          description: Project ID the dismissal applies to.
        insight:
          type:
            - integer
            - 'null'
          description: Optional Deep Research insight ID the mode was seen on.
        mode_title:
          type: string
          description: Exact title of the failure mode to suppress.
          maxLength: 200
        mode_details:
          type: string
          default: ''
          description: Optional detail text of the failure mode, stored with the dismissal.
        mode_severity:
          type: string
          default: ''
          description: >-
            Optional severity label of the failure mode, stored with the
            dismissal.
          maxLength: 20
        note:
          type: string
          default: ''
          description: Optional reason. Empty is fine — a bare thumbs-down still dismisses.
      required:
        - mode_title
        - project
  securitySchemes:
    api_key:
      type: apiKey
      name: X-CEKURA-API-KEY
      in: header
      description: >-
        API Key Authentication. It should be included in the header of each
        request.

````