updateDefaultProjectClassification
Update the default data classification level of a project
Details
- Method:
PUT - Path:
/rest/api/3/project/{projectIdOrKey}/classification-level/default - Operation ID:
updateDefaultProjectClassification
Parameters
{
"projectIdOrKey": {
"description": "The project ID or project key (case-sensitive).",
"required": true,
"location": "path",
"type": "string"
},
"id": {
"description": "The ID of the project classification.",
"required": true,
"location": "body",
"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('updateDefaultProjectClassification', {
# Add required parameters here
})