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

getDashboardItemProperty

Get dashboard item property

Details

  • Method: GET
  • Path: /rest/api/3/dashboard/{dashboardId}/items/{itemId}/properties/{propertyKey}
  • Operation ID: getDashboardItemProperty

Parameters

{
  "dashboardId": {
    "description": "The ID of the dashboard.",
    "required": true,
    "location": "path",
    "type": "string"
  },
  "itemId": {
    "description": "The ID of the dashboard item.",
    "required": true,
    "location": "path",
    "type": "string"
  },
  "propertyKey": {
    "description": "The key of the dashboard item property.",
    "required": true,
    "location": "path",
    "type": "string"
  }
}

Response Schema

{
  "additionalProperties": false,
  "description": "An entity property, for more information see [Entity properties](https://developer.atlassian.com/cloud/jira/platform/jira-entity-properties/).",
  "properties": {
    "key": {
      "description": "The key of the property. Required on create and update.",
      "type": "string"
    },
    "value": {
      "description": "The value of the property. Required on create and update."
    }
  },
  "type": "object"
}

Usage

from ocp_agent import OCPAgent

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

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