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

deleteInactiveWorkflow

Delete inactive workflow

Details

  • Method: DELETE
  • Path: /rest/api/3/workflow/{entityId}
  • Operation ID: deleteInactiveWorkflow

Parameters

{
  "entityId": {
    "description": "The entity ID of the workflow.",
    "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('deleteInactiveWorkflow', {
    # Add required parameters here
})