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

setIssueTypeProperty

Set issue type property

Details

  • Method: PUT
  • Path: /rest/api/3/issuetype/{issueTypeId}/properties/{propertyKey}
  • Operation ID: setIssueTypeProperty

Parameters

{
  "issueTypeId": {
    "description": "The ID of the issue type.",
    "required": true,
    "location": "path",
    "type": "string"
  },
  "propertyKey": {
    "description": "The key of the issue type property. The maximum length is 255 characters.",
    "required": true,
    "location": "path",
    "type": "string"
  }
}

Response Schema

{}

Usage

from ocp_agent import OCPAgent

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

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