repo_list_pull_request_thread_comments
Retrieve and manage comments in a pull request thread within Azure DevOps repositories. Input repository ID, pull request ID, and thread ID to access, filter, and organize feedback efficiently.
Instructions
Retrieve a list of comments in a pull request thread.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
fullResponse | No | Return full comment JSON response instead of trimmed data. | |
project | No | Project ID or project name (optional) | |
pullRequestId | Yes | The ID of the pull request for which to retrieve thread comments. | |
repositoryId | Yes | The ID of the repository where the pull request is located. | |
skip | No | The number of comments to skip. | |
threadId | Yes | The ID of the thread for which to retrieve comments. | |
top | No | The maximum number of comments to return. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"fullResponse": {
"default": false,
"description": "Return full comment JSON response instead of trimmed data.",
"type": "boolean"
},
"project": {
"description": "Project ID or project name (optional)",
"type": "string"
},
"pullRequestId": {
"description": "The ID of the pull request for which to retrieve thread comments.",
"type": "number"
},
"repositoryId": {
"description": "The ID of the repository where the pull request is located.",
"type": "string"
},
"skip": {
"default": 0,
"description": "The number of comments to skip.",
"type": "number"
},
"threadId": {
"description": "The ID of the thread for which to retrieve comments.",
"type": "number"
},
"top": {
"default": 100,
"description": "The maximum number of comments to return.",
"type": "number"
}
},
"required": [
"repositoryId",
"pullRequestId",
"threadId"
],
"type": "object"
}