deleteIssueProperty
Delete issue property
Details
- Method:
DELETE - Path:
/rest/api/3/issue/{issueIdOrKey}/properties/{propertyKey} - Operation ID:
deleteIssueProperty
Parameters
{
"issueIdOrKey": {
"description": "The key or ID of the issue.",
"required": true,
"location": "path",
"type": "string"
},
"propertyKey": {
"description": "The key of the property.",
"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('deleteIssueProperty', {
# Add required parameters here
})