deleteWhiteboardPropertyById
Delete content property for whiteboard by id
Details
- Method:
DELETE - Path:
/whiteboards/{whiteboard-id}/properties/{property-id} - Operation ID:
deleteWhiteboardPropertyById
Parameters
{
"whiteboard-id": {
"description": "The ID of the whiteboard the property belongs to.",
"required": true,
"location": "path",
"type": "integer",
"format": "int64"
},
"property-id": {
"description": "The ID of the property to be deleted.",
"required": true,
"location": "path",
"type": "integer",
"format": "int64"
}
}Usage
from ocp_agent import OCPAgent
agent = OCPAgent()
await agent.register_api('confluence')
# Call this tool
result = await agent.call_tool('deleteWhiteboardPropertyById', {
# Add required parameters here
})