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

# Create a finding



## OpenAPI

````yaml /docs-openapi.json post /v1/findings
openapi: 3.1.0
info:
  title: Zelto REST API
  version: v1
  description: >-
    Programmatic access to your Zelto organization. Every endpoint is scoped to
    the organization the API key belongs to. Mint a key at Settings →
    Integrations → API Call Upload.
servers:
  - url: https://api.zelto.ai
    description: Production
security:
  - bearerAuth: []
tags:
  - name: Agents
    description: Voice and chat bots normalised through Zelto's ingestion pipeline.
  - name: Conversations
    description: Calls, chats, and voicemails — plus their transcripts and recordings.
  - name: Customer Metrics
    description: >-
      Customer-provided evaluations attached to a call (requires metrics
      enabled).
  - name: Reviews
    description: Human review state for conversations.
  - name: Buckets
    description: Reviewer routing — group conversations for batched review.
  - name: Findings
    description: >-
      Structured issues discovered during analysis, with optional conversation
      attachments and comments.
  - name: Organizations
    description: >-
      Headless org provisioning. Requires an admin/service API key (not a
      read-only org-scoped customer key).
paths:
  /v1/findings:
    post:
      tags:
        - Findings
      summary: Create a finding
      operationId: createFinding
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - title
              properties:
                title:
                  type: string
                  minLength: 1
                description:
                  type: object
                  additionalProperties: true
                  description: TipTap JSON document.
                status:
                  type: string
                  enum:
                    - open
                    - acknowledged
                    - resolved
                    - ignored
                  default: open
                priority:
                  type: string
                  enum:
                    - none
                    - low
                    - medium
                    - high
                    - urgent
                  default: none
                tags:
                  type: array
                  items:
                    type: string
                  default: []
                findingType:
                  type: integer
                  nullable: true
                conversationIds:
                  type: array
                  items:
                    type: string
                    format: uuid
                  description: >-
                    Optional conversation UUIDs to attach to the new finding on
                    creation.
                analyzedFromDate:
                  type: string
                  format: date-time
                  description: >-
                    Optional start of the analyzed time range this finding
                    summarizes.
                analyzedToDate:
                  type: string
                  format: date-time
                  description: >-
                    Optional end of the analyzed time range this finding
                    summarizes.
      responses:
        '200':
          description: Created finding.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Finding'
        '400':
          $ref: '#/components/responses/ValidationFailed'
        '401':
          $ref: '#/components/responses/Unauthorized'
components:
  schemas:
    Finding:
      type: object
      required:
        - id
        - title
        - status
        - priority
        - tags
        - createdAt
        - updatedAt
      properties:
        id:
          type: string
          format: uuid
        title:
          type: string
        description:
          type: object
          additionalProperties: true
          description: TipTap JSON document.
        status:
          type: string
          enum:
            - open
            - acknowledged
            - resolved
            - ignored
        priority:
          type: string
          enum:
            - none
            - low
            - medium
            - high
            - urgent
        tags:
          type: array
          items:
            type: string
        findingType:
          type: integer
          nullable: true
        assigneeUserId:
          type: string
          format: uuid
          nullable: true
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
    Error:
      type: object
      required:
        - error
      properties:
        error:
          type: string
          description: >-
            Human-readable error message, e.g. Unauthorized or Validation
            failed.
        message:
          type: string
        details:
          type: object
          additionalProperties: true
  responses:
    ValidationFailed:
      description: Request body failed validation.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    Unauthorized:
      description: Missing or invalid API key.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        Send `Authorization: Bearer YOUR_API_KEY`. The key resolves to a single
        organization.

````