GET
    /projects/{projectId}
  
  curl \
 --request GET 'https://open.api.missionx.ai/v2/projects/{projectId}' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
    
        Response examples (200)
  
  {
  "archived": true,
  "_id": "string",
  "createdBy": "string",
  "createdAt": "2025-05-04T09:42:00Z",
  "updatedAt": "2025-05-04T09:42:00Z",
  "org": "string",
  "startDate": "2025-05-04T09:42:00Z",
  "endDate": "2025-05-04T09:42:00Z",
  "client": "string",
  "customId": "string",
  "title": "string",
  "description": "string",
  "projectCode": "string",
  "projectStatus": "open",
  "departments": [
    "string"
  ],
  "offices": [
    "string"
  ],
  "revenueType": "milestones",
  "budget": 42.0,
  "timeTrackingEnabled": false,
  "currency": "string",
  "inviteDomains": [
    "string"
  ],
  "projectType": "smart-simple",
  "usageStorage": 0,
  "planItems": [
    "string"
  ],
  "customProperties": [
    {
      "name": "string",
      "canView": "member",
      "description": "string"
    }
  ],
  "people": [
    {
      "_id": "string",
      "permission": "member",
      "person": {
        "_id": "string",
        "firstName": "string",
        "lastName": "string",
        "avatar": "string",
        "city": "string",
        "country": "string",
        "state": "string",
        "timezone": "string"
      },
      "role": "string",
      "roleTitle": "string",
      "email": "hello@example.com",
      "isProjectManager": false,
      "rate": 42.0,
      "rateTime": "oneTime",
      "invitePendingSince": 42.0,
      "praise": 42.0
    }
  ]
}