get_pull_request
Retrieve a specific pull request from a Bitbucket repository using its ID to access detailed information and review changes.
Instructions
Get a single pull request by its ID.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
pull_request_id | Yes | The ID of the pull request. | |
repository_name | Yes | Name of the repository (repo slug) |
Input Schema (JSON Schema)
{
"properties": {
"pull_request_id": {
"description": "The ID of the pull request.",
"type": "string"
},
"repository_name": {
"description": "Name of the repository (repo slug)",
"type": "string"
}
},
"required": [
"repository_name",
"pull_request_id"
],
"type": "object"
}