get_pull_request_comments
Retrieve and manage comments for a specific pull request in Backlog projects by specifying project, repository, and pull request details for streamlined collaboration.
Instructions
Returns list of comments for a pull request
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| count | No | Number of comments to retrieve | |
| maxId | No | Maximum comment ID | |
| minId | No | Minimum comment ID | |
| number | Yes | Pull request number | |
| order | No | Sort order | |
| projectIdOrKey | Yes | Project ID or project key | |
| repoIdOrName | Yes | Repository ID or name | 
Input Schema (JSON Schema)
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "additionalProperties": false,
  "properties": {
    "count": {
      "description": "Number of comments to retrieve",
      "type": "number"
    },
    "maxId": {
      "description": "Maximum comment ID",
      "type": "number"
    },
    "minId": {
      "description": "Minimum comment ID",
      "type": "number"
    },
    "number": {
      "description": "Pull request number",
      "type": "number"
    },
    "order": {
      "description": "Sort order",
      "enum": [
        "asc",
        "desc"
      ],
      "type": "string"
    },
    "projectIdOrKey": {
      "description": "Project ID or project key",
      "type": [
        "string",
        "number"
      ]
    },
    "repoIdOrName": {
      "description": "Repository ID or name",
      "type": "string"
    }
  },
  "required": [
    "projectIdOrKey",
    "repoIdOrName",
    "number"
  ],
  "type": "object"
}