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

deleteProjectProperty

Delete project property

Details

  • Method: DELETE
  • Path: /rest/api/3/project/{projectIdOrKey}/properties/{propertyKey}
  • Operation ID: deleteProjectProperty

Parameters

{
  "projectIdOrKey": {
    "description": "The project ID or project key (case sensitive).",
    "required": true,
    "location": "path",
    "type": "string"
  },
  "propertyKey": {
    "description": "The project property key. Use [Get project property keys](#api-rest-api-3-project-projectIdOrKey-properties-get) to get a list of all project property keys.",
    "required": true,
    "location": "path",
    "type": "string"
  }
}

Usage

from ocp_agent import OCPAgent

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

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