> ## 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
      description: |-
        Record a thumbs-down on one failure mode.

        Project-scoped: the dismissal hides the mode (matched by
        normalized title) from every subsequent render of every
        insight in the project. No undo via this API in v1 — admin
        only.
      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
        insight:
          type:
            - integer
            - 'null'
        mode_title:
          type: string
          description: Exact title of the failure mode to suppress.
          maxLength: 200
        mode_details:
          type: string
          default: ''
        mode_severity:
          type: string
          default: ''
          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.

````