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

deleteWorkflowSchemeDraft

Delete draft workflow scheme

Details

  • Method: DELETE
  • Path: /rest/api/3/workflowscheme/{id}/draft
  • Operation ID: deleteWorkflowSchemeDraft

Parameters

{
  "id": {
    "description": "The ID of the active workflow scheme that the draft was created from.",
    "required": true,
    "location": "path",
    "type": "integer",
    "format": "int64"
  }
}

Usage

from ocp_agent import OCPAgent

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

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