> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blinkops.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List Pull Request Reviewers

Gets the users or teams whose review is requested for a pull request. Once a requested reviewer submits a review, they are no longer considered a requested reviewer. Their review will instead be returned by the [List reviews for a pull request](https://docs.github.com/rest/pulls/reviews#list-reviews-for-a-pull-request) operation.

<Note>
  External Documentation

  To learn more, visit the [GitHub documentation](https://docs.github.com/rest/reference/pulls#get-all-requested-reviewers-for-a-pull-request).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter   | Description                                                                   |
  | ----------- | ----------------------------------------------------------------------------- |
  | Owner       | The organization or person who owns the repository. github.com/{owner}/{repo} |
  | Pull Number | Pull number can be found in the pull request's URL.                           |
  | Repo        | Name of the repository owned by the owner. github.com/{owner}/{repo}          |
</div>

## Example Output

```json theme={"dark"}
{
	"value": {
		"teams": [
			{
				"description": "A great team.",
				"html_url": "https://github.com/orgs/github/teams/justice-league",
				"id": 1,
				"members_url": "https://api.github.com/teams/1/members{/member}",
				"name": "Justice League",
				"node_id": "MDQ6VGVhbTE=",
				"parent": null,
				"permission": "admin",
				"privacy": "closed",
				"repositories_url": "https://api.github.com/teams/1/repos",
				"slug": "justice-league",
				"url": "https://api.github.com/teams/1"
			}
		],
		"users": [
			{
				"avatar_url": "https://github.com/images/error/octocat_happy.gif",
				"events_url": "https://api.github.com/users/octocat/events{/privacy}",
				"followers_url": "https://api.github.com/users/octocat/followers",
				"following_url": "https://api.github.com/users/octocat/following{/other_user}",
				"gists_url": "https://api.github.com/users/octocat/gists{/gist_id}",
				"gravatar_id": "",
				"html_url": "https://github.com/octocat",
				"id": 1,
				"login": "octocat",
				"node_id": "MDQ6VXNlcjE=",
				"organizations_url": "https://api.github.com/users/octocat/orgs",
				"received_events_url": "https://api.github.com/users/octocat/received_events",
				"repos_url": "https://api.github.com/users/octocat/repos",
				"site_admin": false,
				"starred_url": "https://api.github.com/users/octocat/starred{/owner}{/repo}",
				"subscriptions_url": "https://api.github.com/users/octocat/subscriptions",
				"type": "User",
				"url": "https://api.github.com/users/octocat"
			}
		]
	}
}
```

## Workflow Library Example

[List Pull Request Reviewers with Github and Send Results Via Email](https://library.blinkops.com/workflows/list-pull-request-reviewers-with-github-and-send-results-via-email)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/list-pull-request-reviewers-with-github-and-send-results-via-email/canvas" />
</div>
