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

# Get apiv1issues events

> Get issue events



## OpenAPI

````yaml /api-reference/openapi.yaml get /api/v1/issues/{issueId}/events
openapi: 3.0.0
info:
  title: QYL Observability API
  version: '2026-01-26'
servers:
  - url: https://api.staging.qyl.dev
    description: QYL Staging API
    variables: {}
  - url: https://api.qyl.dev
    description: QYL Production API
    variables: {}
security: []
tags:
  - name: Streaming
  - name: Traces
  - name: Logs
  - name: Metrics
  - name: Sessions
  - name: Errors
  - name: Deployments
  - name: Services
  - name: Health
  - name: Workspaces
  - name: Onboarding
  - name: Configurator
  - name: Issues
  - name: Workflows
  - name: Search
  - name: Alerts
paths:
  /api/v1/issues/{issueId}/events:
    get:
      tags:
        - Issues
      description: Get issue events
      operationId: IssuesApi_getEvents
      parameters:
        - name: issueId
          in: path
          required: true
          schema:
            type: string
        - name: limit
          in: query
          required: false
          description: Page size
          schema:
            type: integer
            format: int32
            minimum: 1
            maximum: 100
            default: 20
          explode: false
        - name: cursor
          in: query
          required: false
          description: Cursor
          schema:
            type: string
          explode: false
      responses:
        '200':
          description: The request has succeeded.
          content:
            application/json:
              schema:
                type: object
                required:
                  - items
                  - has_more
                properties:
                  items:
                    type: array
                    items:
                      $ref: >-
                        #/components/schemas/Qyl.Domains.Issues.ErrorIssueEventEntity
                    description: List of items in this page
                  next_cursor:
                    type: string
                    description: Cursor for the next page (null if no more pages)
                  prev_cursor:
                    type: string
                    description: Cursor for the previous page (null if first page)
                  has_more:
                    type: boolean
                    description: Whether there are more items available
                description: Cursor-based paginated response wrapper
        '404':
          description: Resource not found (404)
          headers:
            X-Trace-Id:
              required: false
              description: Trace ID for correlation
              schema:
                type: string
            X-Request-Id:
              required: false
              description: Request ID for support
              schema:
                type: string
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Qyl.Common.Errors.NotFoundError'
        '500':
          description: Internal server error (500)
          headers:
            X-Trace-Id:
              required: false
              description: Trace ID for correlation
              schema:
                type: string
            X-Request-Id:
              required: false
              description: Request ID for support
              schema:
                type: string
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Qyl.Common.Errors.InternalServerError'
components:
  schemas:
    Qyl.Domains.Issues.ErrorIssueEventEntity:
      type: object
      required:
        - id
        - issue_id
        - timestamp
      properties:
        id:
          type: string
          description: Event ID
        issue_id:
          type: string
          description: Parent issue
        trace_id:
          type: string
          description: Associated trace ID
        span_id:
          type: string
          description: Associated span ID
        message:
          type: string
          description: Error message
        stack_trace:
          type: string
          description: Stack trace
        stack_frames_json:
          type: string
          description: Parsed stack frames
          x-duckdb-type: JSON
        environment:
          type: string
          description: Environment (dev, staging, prod)
        release_version:
          type: string
          description: Release version
        user_id:
          type: string
          description: Affected user ID
        user_ip:
          type: string
          description: Client IP address
        request_url:
          type: string
          description: Request URL
        request_method:
          type: string
          description: HTTP request method
        browser:
          type: string
          description: Browser info
        os:
          type: string
          description: Operating system
        device:
          type: string
          description: Device info
        runtime:
          type: string
          description: Runtime name
        runtime_version:
          type: string
          description: Runtime version
        context_json:
          type: string
          description: Additional context data
          x-duckdb-type: JSON
        tags_json:
          type: string
          description: Event tags
          x-duckdb-type: JSON
        timestamp:
          type: string
          format: date-time
          description: Event timestamp
      description: Individual error occurrence linked to an issue
      x-csharp-type: ErrorIssueEventEntity
      x-duckdb-table: error_issue_events
    Qyl.Common.Errors.NotFoundError:
      type: object
      required:
        - title
      properties:
        title:
          type: string
          enum:
            - Not Found
        resource_type:
          type: string
          description: The type of resource that was not found
        resource_id:
          type: string
          description: The identifier that was not found
      allOf:
        - $ref: '#/components/schemas/Qyl.Common.Errors.ProblemDetails'
      description: Resource not found (404)
    Qyl.Common.Errors.InternalServerError:
      type: object
      required:
        - title
      properties:
        title:
          type: string
          enum:
            - Internal Server Error
        error_code:
          type: string
          description: Error code for support reference
      allOf:
        - $ref: '#/components/schemas/Qyl.Common.Errors.ProblemDetails'
      description: Internal server error (500)
    Qyl.Common.Errors.ProblemDetails:
      type: object
      required:
        - type
        - title
        - status
      properties:
        type:
          type: string
          format: uri
          description: A URI reference identifying the problem type
          default: about:blank
        title:
          type: string
          description: A short, human-readable summary of the problem type
        status:
          type: integer
          format: int32
          description: >-
            The HTTP status code (informational only, actual code set by
            subtype)
        detail:
          type: string
          description: A human-readable explanation specific to this occurrence
        instance:
          type: string
          format: uri
          description: A URI reference identifying the specific occurrence
        timestamp:
          type: string
          format: date-time
          description: Timestamp of the error
      description: RFC 7807 Problem Details for HTTP APIs

````