get_pull_request_diff
Retrieve the difference for a specific pull request in Azure DevOps, optionally filtering by file path or iteration for precise changes.
Instructions
Get the diff for a pull request
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filePath | No | Specific file path to get diff for (optional) | |
iterationId | No | Specific iteration to get diff for (optional) | |
pullRequestId | Yes | ID of the pull request |
Input Schema (JSON Schema)
{
"properties": {
"filePath": {
"description": "Specific file path to get diff for (optional)",
"type": "string"
},
"iterationId": {
"description": "Specific iteration to get diff for (optional)",
"type": "number"
},
"pullRequestId": {
"description": "ID of the pull request",
"type": "number"
}
},
"required": [
"pullRequestId"
],
"type": "object"
}