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

# Get issue detail by UUID or exact human reference

> Accepts an issue UUID, bare number, #number, ATOLL-number, TSK-number, or unambiguous project-derived prefix. Candidates are filtered by live project access before ambiguity evaluation; titles are never fuzzy-matched.



## OpenAPI

````yaml /openapi.json get /api/orgs/{id}/issues/{issueId}
openapi: 3.1.0
info:
  title: Atoll API
  version: 1.0.0
  description: >-
    REST API for Atoll project management, agent collaboration, strategy
    tracking, and integrations.
servers:
  - url: https://atollhq.com
    description: Production
security:
  - bearerAuth: []
tags:
  - name: Authentication
  - name: Organizations
  - name: Projects
  - name: Project access
  - name: Issues
  - name: Issue details
  - name: Milestones
  - name: Strategy
  - name: Members and agents
  - name: Planning
  - name: Setup
  - name: Integrations and billing
  - name: Notifications and public
  - name: Private inbox
paths:
  /api/orgs/{id}/issues/{issueId}:
    get:
      tags:
        - Issues
      summary: Get issue detail by UUID or exact human reference
      description: >-
        Accepts an issue UUID, bare number, #number, ATOLL-number, TSK-number,
        or unambiguous project-derived prefix. Candidates are filtered by live
        project access before ambiguity evaluation; titles are never
        fuzzy-matched.
      operationId: get_api_orgs_id_issues_issueId
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
          description: id identifier
        - name: issueId
          in: path
          required: true
          schema:
            type: string
          description: >-
            Issue UUID, bare number, #number, ATOLL-number, TSK-number, or
            supported exact project-derived prefix
        - name: projectId
          in: query
          required: false
          schema:
            type: string
            format: uuid
          description: >-
            Optional project UUID used to scope an otherwise ambiguous human
            issue reference
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
        '400':
          $ref: '#/components/responses/IssueReferenceBadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/IssueReferenceNotFound'
        '409':
          $ref: '#/components/responses/IssueReferenceConflict'
        '500':
          $ref: '#/components/responses/IssueReferenceServerError'
      security:
        - bearerAuth: []
components:
  responses:
    IssueReferenceBadRequest:
      description: Invalid request or human issue reference
      content:
        application/json:
          schema:
            oneOf:
              - $ref: '#/components/schemas/Error'
              - $ref: '#/components/schemas/IssueReferenceError'
    Unauthorized:
      description: Missing or invalid authentication
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    Forbidden:
      description: Authenticated but not allowed
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    IssueReferenceNotFound:
      description: Issue not found or human issue reference is not accessible
      content:
        application/json:
          schema:
            oneOf:
              - $ref: '#/components/schemas/Error'
              - $ref: '#/components/schemas/IssueReferenceError'
    IssueReferenceConflict:
      description: The human issue reference matches more than one accessible project
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/IssueReferenceError'
    IssueReferenceServerError:
      description: Issue reference resolution failed
      content:
        application/json:
          schema:
            oneOf:
              - $ref: '#/components/schemas/Error'
              - $ref: '#/components/schemas/IssueReferenceError'
  schemas:
    Error:
      type: object
      description: >-
        Common error responses contain error. Shared missing-auth and
        unknown-API responses also contain a stable code.
      properties:
        error:
          type: string
        code:
          type: string
      required:
        - error
      examples:
        - error: Unauthorized
          code: unauthorized
        - error: Not found
          code: not_found
      additionalProperties: true
    IssueReferenceError:
      type: object
      required:
        - error
      properties:
        error:
          type: object
          required:
            - code
            - message
            - field
            - retryable
            - recovery
          properties:
            code:
              type: string
              enum:
                - invalid_reference
                - reference_not_found
                - ambiguous_reference
                - resolver_failed
            message:
              type: string
            field:
              type: string
              enum:
                - issue_id
                - project_id
            retryable:
              type: boolean
            candidates:
              type: array
              items:
                $ref: '#/components/schemas/IssueReferenceCandidate'
            recovery:
              type: string
          additionalProperties: false
      additionalProperties: false
    IssueReferenceCandidate:
      type: object
      required:
        - id
        - number
        - project_id
        - title
      properties:
        id:
          type: string
          format: uuid
        number:
          type: integer
        project_id:
          type:
            - string
            - 'null'
          format: uuid
        title:
          type: string
      additionalProperties: false
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: sk_atoll_<key>

````