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

removeDefaultProjectClassification

Remove the default data classification level from a project

Details

  • Method: DELETE
  • Path: /rest/api/3/project/{projectIdOrKey}/classification-level/default
  • Operation ID: removeDefaultProjectClassification

Parameters

{
  "projectIdOrKey": {
    "description": "The project ID or project key (case-sensitive).",
    "required": true,
    "location": "path",
    "type": "string"
  }
}

Response Schema

{}

Usage

from ocp_agent import OCPAgent

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

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