Open Context Protocol is live! 🚀 Read the launch post

archiveProject

Archive project

Details

  • Method: POST
  • Path: /rest/api/3/project/{projectIdOrKey}/archive
  • Operation ID: archiveProject

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('archiveProject', {
    # Add required parameters here
})