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

deleteIssueTypeProperty

Delete issue type property

Details

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

Parameters

{
  "issueTypeId": {
    "description": "The ID of the issue type.",
    "required": true,
    "location": "path",
    "type": "string"
  },
  "propertyKey": {
    "description": "The key of the property. Use [Get issue type property keys](#api-rest-api-3-issuetype-issueTypeId-properties-get) to get a list of all issue type property keys.",
    "required": true,
    "location": "path",
    "type": "string"
  }
}

Usage

from ocp_agent import OCPAgent

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

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