Open Context Protocol is live! 🚀 Read the launch post

getColumns

Get columns

Details

  • Method: GET
  • Path: /rest/api/3/filter/{id}/columns
  • Operation ID: getColumns

Parameters

{
  "id": {
    "description": "The ID of the filter.",
    "required": true,
    "location": "path",
    "type": "integer",
    "format": "int64"
  }
}

Response Schema

{
  "items": {
    "additionalProperties": false,
    "description": "Details of an issue navigator column item.",
    "properties": {
      "label": {
        "description": "The issue navigator column label.",
        "type": "string"
      },
      "value": {
        "description": "The issue navigator column value.",
        "type": "string"
      }
    },
    "type": "object"
  },
  "type": "array"
}

Usage

from ocp_agent import OCPAgent

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

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