---
title: "List the default reviewers in a project"
method: GET
path: "/workspaces/{workspace}/projects/{project_key}/default-reviewers"
tags: ["Projects"]
---

# List the default reviewers in a project

`GET /workspaces/{workspace}/projects/{project_key}/default-reviewers`

Return a list of all default reviewers for a project. This is a list of users that will be added as default
reviewers to pull requests for any repository within the project.

## Response `200`

The list of project default reviewers

- PaginatedDefaultReviewerAndType — A paginated list of default reviewers with reviewer type.
  - `size` integer — Total number of objects in the response. This is an optional element that is not provided in all responses, as it can be expensive to compute.
  - `page` integer — Page number of the current results. This is an optional element that is not provided in all responses.
  - `pagelen` integer — Current number of objects on the existing page. The default value is 10 with 100 being the maximum allowed value. Individual APIs may enforce different values.
  - `next` string, uri — Link to the next page if it exists. The last page of a collection does not have this value. Use this link to navigate the result set and refrain from constructing your own URLs.
  - `previous` string, uri — Link to previous page if it exists. A collections first page does not have this value. This is an optional element that is not provided in all responses. Some result sets strictly support forward navigation and never provide previous links. Clients must anticipate that backwards navigation is not always available. Use this link to navigate the result set and refrain from constructing your own URLs.
  - `values` DefaultReviewerAndType[]
    - `type` string, required
    - `reviewer_type` string
    - `user` User — A user object.
      - `type` string, required
      - `links` object — Links related to a User.
        - `avatar` Link — A link to a resource related to this object.
          - `href` string, uri
          - `name` string
        - `self` Link — A link to a resource related to this object.
          - `href` string, uri
          - `name` string
        - `html` Link — A link to a resource related to this object.
          - `href` string, uri
          - `name` string
        - `repositories` Link — A link to a resource related to this object.
          - `href` string, uri
          - `name` string
      - `created_on` string, date-time
      - `display_name` string
      - `uuid` string
      - `account_id` string — The user's Atlassian account ID.
      - `account_status` string — The status of the account. Currently the only possible value is "active", but more values may be added in the future.
      - `has_2fa_enabled` boolean
      - `nickname` string — Account name defined by the owner. Should be used instead of the "username" field. Note that "nickname" cannot be used in place of "username" in URLs and queries, as "nickname" is not guaranteed to be unique.
      - `is_staff` boolean

## Other responses

- `403` — If the authenticated user does not have admin access to the project
- `404` — If the workspace or project does not exist at this location

---

[API](https://skmtc.dev/atlassian/apis/bitbucket-api.md) · [All operations](https://skmtc.dev/atlassian/apis/bitbucket-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/atlassian/bitbucket-api/revisions/5748cb124a33/schema)
