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

deleteProjectAvatar

Delete project avatar

Details

  • Method: DELETE
  • Path: /rest/api/3/project/{projectIdOrKey}/avatar/{id}
  • Operation ID: deleteProjectAvatar

Parameters

{
  "projectIdOrKey": {
    "description": "The project ID or (case-sensitive) key.",
    "required": true,
    "location": "path",
    "type": "string"
  },
  "id": {
    "description": "The ID of the avatar.",
    "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('deleteProjectAvatar', {
    # Add required parameters here
})