unapprove_pull_request
Remove approval from a pull request in Bitbucket by specifying the workspace, repository, and pull request ID. Manage PR lifecycle and code review efficiently with Bitbucket MCP Server integration.
Instructions
Remove approval from a pull request
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| pull_request_id | Yes | Pull request ID | |
| repository | Yes | Repository slug (e.g., "my-repo") | |
| workspace | Yes | Bitbucket workspace/project key (e.g., "PROJ") | 
Input Schema (JSON Schema)
{
  "properties": {
    "pull_request_id": {
      "description": "Pull request ID",
      "type": "number"
    },
    "repository": {
      "description": "Repository slug (e.g., \"my-repo\")",
      "type": "string"
    },
    "workspace": {
      "description": "Bitbucket workspace/project key (e.g., \"PROJ\")",
      "type": "string"
    }
  },
  "required": [
    "workspace",
    "repository",
    "pull_request_id"
  ],
  "type": "object"
}