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

deleteWorkflowScheme

Delete workflow scheme

Details

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

Parameters

{
  "id": {
    "description": "The ID of the workflow scheme. Find this ID by editing the desired workflow scheme in Jira. The ID is shown in the URL as `schemeId`. For example, *schemeId=10301*.",
    "required": true,
    "location": "path",
    "type": "integer",
    "format": "int64"
  }
}

Response Schema

{}

Usage

from ocp_agent import OCPAgent

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

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