Open Context Protocol is live! 🚀 Read the launch post
getIsWatchingIssueBulk

getIsWatchingIssueBulk

Get is watching issue bulk

Details

  • Method: POST
  • Path: /rest/api/3/issue/watching
  • Operation ID: getIsWatchingIssueBulk

Parameters

{
  "issueIds": {
    "description": "The list of issue IDs.",
    "required": true,
    "location": "body",
    "type": "array"
  }
}

Response Schema

{
  "additionalProperties": false,
  "description": "A container for the watch status of a list of issues.",
  "properties": {
    "issuesIsWatching": {
      "additionalProperties": {
        "readOnly": true,
        "type": "boolean"
      },
      "description": "The map of issue ID to boolean watch status.",
      "readOnly": true,
      "type": "object"
    }
  },
  "type": "object"
}

Usage

from ocp_agent import OCPAgent

agent = OCPAgent()
await agent.register_api('jira')

# Call this tool
result = await agent.call_tool('getIsWatchingIssueBulk', {
    # Add required parameters here
})