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

deleteWorkflowTransitionProperty

Delete workflow transition property

Details

  • Method: DELETE
  • Path: /rest/api/3/workflow/transitions/{transitionId}/properties
  • Operation ID: deleteWorkflowTransitionProperty

Parameters

{
  "transitionId": {
    "description": "The ID of the transition. To get the ID, view the workflow in text mode in the Jira admin settings. The ID is shown next to the transition.",
    "required": true,
    "location": "path",
    "type": "integer",
    "format": "int64"
  },
  "key": {
    "description": "The name of the transition property to delete, also known as the name of the property.",
    "required": true,
    "location": "query",
    "type": "string"
  },
  "workflowName": {
    "description": "The name of the workflow that the transition belongs to.",
    "required": true,
    "location": "query",
    "type": "string"
  },
  "workflowMode": {
    "description": "The workflow status. Set to `live` for inactive workflows or `draft` for draft workflows. Active workflows cannot be edited.",
    "required": false,
    "location": "query",
    "type": "string",
    "enum": [
      "live",
      "draft"
    ]
  }
}

Usage

from ocp_agent import OCPAgent

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

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