Get Projects

GET /api/v1.0/projects

This endpoint fetch the list of projects for the team member.

Query parameters

  • Subteam ID

  • archived string

    Archived : true or false

  • limit string

    No of records to fetch

  • offset string

    Record Offset

  • sort string

    Sorting order, default is ascending

    Values are ascending or descending.

Responses

GET /api/v1.0/projects
curl \
 -X GET https://openapi.niftypm.com/api/v1.0/projects \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "items": [
    {
      "id": "string",
      "nice_id": "string",
      "name": "string",
      "description": "string",
      "initials": "string",
      "logo": "string",
      "color": "string",
      "secondary_color": "string",
      "demo": true,
      "archived": true,
      "auto_milestones": true,
      "default_tasks_view": "string",
      "access_type": "string",
      "owner": "string",
      "members": [
        "string"
      ],
      "general_discussion": "string",
      "subteam": "string",
      "progress": 42.0,
      "joined": true,
      "general_discussion_muted": true,
      "email": "string",
      "zoom_id": "string",
      "zoom_password": "string",
      "zoom_join_url": "string",
      "webex_id": "string",
      "webex_password": "string",
      "webex_join_url": "string",
      "enabled_modules": [
        "string"
      ],
      "disabled_modules": [
        "string"
      ],
      "disabled_widgets": "milestones",
      "hidden_taskboard_fields": "description",
      "repo": "string",
      "total_story_points": 42.0,
      "completed_story_points": 42.0,
      "pinned_message": "string",
      "pinned_by": "string",
      "completion_groups": [
        "string"
      ],
      "doc_root_folder": {},
      "file_root_folder": {},
      "removed": true,
      "rollups": [
        "string"
      ],
      "list_columns_order": [
        "string"
      ],
      "hidden_list_columns": [
        "string"
      ],
      "integrations": [
        "string"
      ]
    }
  ],
  "hasMore": false
}