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

bulkSetIssuesPropertiesList

Bulk set issues properties by list

Details

  • Method: POST
  • Path: /rest/api/3/issue/properties
  • Operation ID: bulkSetIssuesPropertiesList

Parameters

{
  "entitiesIds": {
    "description": "A list of entity property IDs.",
    "required": false,
    "location": "body",
    "type": "array"
  },
  "properties": {
    "description": "A list of entity property keys and values.",
    "required": false,
    "location": "body",
    "type": "object"
  }
}

Usage

from ocp_agent import OCPAgent

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

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