Skip to main content
GET
/
api
/
orgs
/
{id}
/
projects
/
{projectId}
/
board-context
Get board milestone and initiative focus context
curl --request GET \
  --url https://atollhq.com/api/orgs/{id}/projects/{projectId}/board-context \
  --header 'Authorization: Bearer <token>'
{
  "strategyContext": {
    "milestones": [
      {
        "id": "<string>",
        "name": "<string>",
        "status": "<string>",
        "issueCount": 123,
        "completedCount": 123,
        "progress": 123,
        "linkedInitiatives": [
          {
            "id": "<string>",
            "name": "<string>",
            "title": "<string>",
            "status": "<string>",
            "progress": 123,
            "issueCount": 123,
            "completedCount": 123,
            "kpiImpactCount": 123,
            "linkedMilestoneIds": [
              "<string>"
            ]
          }
        ]
      }
    ],
    "initiatives": [
      {
        "id": "<string>",
        "name": "<string>",
        "title": "<string>",
        "status": "<string>",
        "progress": 123,
        "issueCount": 123,
        "completedCount": 123,
        "kpiImpactCount": 123,
        "linkedMilestoneIds": [
          "<string>"
        ]
      }
    ],
    "issueInitiativeLinks": [
      {
        "issueId": "<string>",
        "initiativeIds": [
          "<string>"
        ]
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

id identifier

projectId
string
required

projectId identifier

Response

Successful response

strategyContext
object