Delete a review request

DELETE /repos/:owner/:repo/pulls/:pull_number/requested_reviewers

Input

Name Type Description
reviewers array of strings An array of user logins that will be removed.
team_reviewers array of strings An array of team slugs that will be removed.

Example

{
  "reviewers": [
    "octocat",
    "hubot",
    "other_user"
  ],
  "team_reviewers": [
    "justice-league"
  ]
}

Response

Status: 200 OK