---
title: "List effective default reviewers"
method: GET
path: "/repositories/{workspace}/{repo_slug}/effective-default-reviewers"
tags: ["Pullrequests"]
---

# List effective default reviewers

`GET /repositories/{workspace}/{repo_slug}/effective-default-reviewers`

Returns the repository's effective default reviewers. This includes both default
reviewers defined at the repository level as well as those inherited from its project.

These are the users that are automatically added as reviewers on every
new pull request that is created.

## Response `200`

The paginated list of effective 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 access to view the default reviewers

---

[API](https://skmtc.net/bitbucket/apis/bitbucket-api.md) · [All operations](https://skmtc.net/bitbucket/apis/bitbucket-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/bitbucket/bitbucket-api/revisions/4ec8bd2515c5/schema)
