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

# Get issue by ID

> Returns a single issue with its evidence rows.



## OpenAPI

````yaml /api-reference/openapi.documented.json get /v1/issue/{issueId}
openapi: 3.1.0
info:
  title: Roark Analytics API
  description: >-
    The Roark Analytics API gives you access to the same API that powers the
    award winning Roark Analytics platform.
  version: 1.0.0
servers:
  - description: Production
    url: https://api.roark.ai
security:
  - Bearer: []
tags:
  - name: Agent
  - name: Agent Endpoint
  - name: Call
  - name: Chat
  - name: Metric
  - name: Metric Policy
  - name: Metric Collection Job
  - name: Simulation Persona
  - name: Simulation Scenario
  - name: Simulation Run Plan
  - name: Simulation Run Plan Job
  - name: Simulation Job
  - name: HTTP Request Definition
  - name: Webhook
  - name: Issue
  - name: Knowledge Base
  - name: Call Analysis
  - name: Health
paths:
  /v1/issue/{issueId}:
    get:
      tags:
        - Issue
      summary: Get issue by ID
      description: Returns a single issue with its evidence rows.
      operationId: getV1IssueByIssueId
      parameters:
        - name: issueId
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: The requested issue
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/Issue'
                required:
                  - data
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
                description: Authentication error
              example:
                type: authentication
                code: unauthorized
                message: Authentication required
          description: Unauthorized
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
                description: Not found error
              example:
                type: not_found
                code: resource_not_found
                message: The requested resource could not be found
          description: Not Found
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
                description: Server error
              example:
                type: internal
                code: internal_error
                message: Internal server error
          description: Internal Server Error
components:
  schemas:
    Issue:
      type: object
      properties:
        id:
          type: string
          format: uuid
        organizationId:
          type: string
          format: uuid
        projectId:
          type: string
          format: uuid
        alertId:
          type:
            - string
            - 'null'
          format: uuid
          description: Only set when source is an alert
        source:
          type: string
          enum:
            - TREND_ALERT
            - SINGLE_CALL_ALERT
            - TRACE_FAILURE
            - MANUAL
            - API
            - AGENT
          description: Who opened the issue
        title:
          type: string
        summary:
          type:
            - string
            - 'null'
        severity:
          type:
            - string
            - 'null'
          enum:
            - LOW
            - MEDIUM
            - HIGH
            - CRITICAL
          description: Coarse priority — LOW / MEDIUM / HIGH / CRITICAL
        status:
          type: string
          enum:
            - OPEN
            - ACKED
            - RESOLVED
          description: Lifecycle state
        fingerprint:
          type: string
          description: >-
            Producer-supplied dedup key. Same fingerprint coalesces into the
            same issue.
        eventCount:
          type: integer
          description: How many times this issue has been observed.
        lastEventAt:
          type:
            - string
            - 'null'
          description: Timestamp of the most recent occurrence, or null if no events yet.
        openedAt:
          type: string
        resolvedAt:
          type:
            - string
            - 'null'
        assigneeUserId:
          type:
            - string
            - 'null'
          format: uuid
        evidence:
          type: array
          items:
            $ref: '#/components/schemas/IssueEvidence'
          description: Calls / chats attached as evidence
        createdAt:
          type: string
        updatedAt:
          type:
            - string
            - 'null'
      required:
        - id
        - organizationId
        - projectId
        - alertId
        - source
        - title
        - summary
        - severity
        - status
        - fingerprint
        - eventCount
        - lastEventAt
        - openedAt
        - resolvedAt
        - assigneeUserId
        - evidence
        - createdAt
        - updatedAt
      description: An issue surfaced on the Roark Issues page
    ErrorResponse:
      type: object
      properties:
        type:
          type: string
          enum:
            - validation
            - authentication
            - forbidden
            - not_found
            - conflict
            - rate_limit
            - internal
          description: The error type category
          examples:
            - validation
            - authentication
        code:
          type: string
          description: Machine-readable error code identifier
          examples:
            - invalid_parameter
            - missing_required_field
            - unauthorized
        message:
          type: string
          description: Human-readable error message
          examples:
            - The request was invalid
            - Authentication required
        param:
          type: string
          description: The parameter that caused the error (if applicable)
          examples:
            - email
            - user_id
        details:
          description: Additional error context information
      required:
        - type
        - code
        - message
    IssueEvidence:
      type: object
      properties:
        id:
          type: string
          format: uuid
        callId:
          type:
            - string
            - 'null'
          format: uuid
          description: Call attached as evidence, or null
        chatId:
          type:
            - string
            - 'null'
          format: uuid
          description: Chat attached as evidence, or null
        observedAt:
          type: string
          description: When the evidence was observed (ISO-8601)
      required:
        - id
        - callId
        - chatId
        - observedAt
  securitySchemes:
    Bearer:
      type: http
      scheme: bearer
      bearerFormat: JWT

````