Skip to main content
GET
/
api
/
public
/
v1
/
planner
/
items
/
{id}
Get planner item
curl --request GET \
  --url https://app.msportal.ai/api/public/v1/planner/items/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "title": "<string>",
    "description": "<string>",
    "status": "In Progress",
    "businessValue": "High",
    "hours": 1,
    "costEstimate": 1,
    "probability": 50,
    "startDate": "2023-11-07T05:31:56Z",
    "dueDate": "2023-11-07T05:31:56Z",
    "endDate": "2023-11-07T05:31:56Z",
    "publicNotes": "<string>",
    "privateNotes": "<string>",
    "isArchived": true,
    "isOverdue": true,
    "fiscalYear": 123,
    "fiscalQuarter": 123,
    "company": {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "<string>"
    },
    "type": {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "<string>"
    },
    "linkedGoalsCount": 123,
    "linkedComplianceCount": 123,
    "linkedMeetingsCount": 123,
    "linkedProjectsCount": 123,
    "linkedSecureScoreCount": 123,
    "tagCount": 123,
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z",
    "linkedGoals": [
      {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "title": "<string>",
        "customTitle": "<string>"
      }
    ],
    "linkedCompliance": [
      {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "title": "<string>",
        "customTitle": "<string>"
      }
    ],
    "linkedProjects": [
      {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "name": "<string>",
        "externalId": "<string>",
        "provider": "<string>"
      }
    ],
    "linkedOpportunities": [
      {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "summary": "<string>",
        "externalId": "<string>",
        "provider": "<string>"
      }
    ],
    "linkedSecureScore": [
      {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "title": "<string>",
        "customTitle": "<string>",
        "actionUrl": "<string>"
      }
    ],
    "tags": [
      "<string>"
    ]
  }
}

Authorizations

Authorization
string
header
required

Use your API key as a Bearer token. API keys can be generated in Settings → Integrations → API Access.

Path Parameters

id
string<uuid>
required

Planner item ID

Response

Planner item details with linked items

data
object
required