> ## 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 board milestone and initiative focus context



## OpenAPI

````yaml /openapi.json get /api/orgs/{id}/projects/{projectId}/board-context
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: Organizations
  - name: Projects
  - name: Project access
  - name: Issues
  - name: Issue details
  - name: Milestones
  - name: Strategy
  - name: Members and agents
  - name: Planning
  - name: Integrations and billing
  - name: Notifications and public
paths:
  /api/orgs/{id}/projects/{projectId}/board-context:
    get:
      tags:
        - Planning
      summary: Get board milestone and initiative focus context
      operationId: get_api_orgs_id_projects_projectId_board_context
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
          description: id identifier
        - name: projectId
          in: path
          required: true
          schema:
            type: string
          description: projectId identifier
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  strategyContext:
                    type: object
                    properties:
                      milestones:
                        type: array
                        items:
                          type: object
                          additionalProperties: true
                          properties:
                            id:
                              type: string
                            name:
                              type: string
                            status:
                              type: string
                            issueCount:
                              type: integer
                            completedCount:
                              type: integer
                            progress:
                              type: integer
                            linkedInitiatives:
                              type: array
                              items:
                                $ref: '#/components/schemas/BoardStrategyInitiative'
                      initiatives:
                        type: array
                        items:
                          $ref: '#/components/schemas/BoardStrategyInitiative'
                      issueInitiativeLinks:
                        type: array
                        items:
                          type: object
                          properties:
                            issueId:
                              type: string
                            initiativeIds:
                              type: array
                              items:
                                type: string
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
        '500':
          $ref: '#/components/responses/ServerError'
      security:
        - bearerAuth: []
components:
  schemas:
    BoardStrategyInitiative:
      type: object
      additionalProperties: true
      properties:
        id:
          type: string
        name:
          type: string
        title:
          type: string
          nullable: true
        status:
          type: string
        progress:
          type: integer
        issueCount:
          type: integer
        completedCount:
          type: integer
        kpiImpactCount:
          type: integer
        linkedMilestoneIds:
          type: array
          items:
            type: string
    Error:
      type: object
      properties:
        error:
          type: string
        code:
          type: string
      required:
        - error
      additionalProperties: true
  responses:
    BadRequest:
      description: Invalid request
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    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'
    NotFound:
      description: Resource not found or not visible
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    ServerError:
      description: Unexpected server error
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: sk_atoll_<key>

````