deleteSpacePropertyById
Delete space property by id
Details
- Method:
DELETE - Path:
/spaces/{space-id}/properties/{property-id} - Operation ID:
deleteSpacePropertyById
Parameters
{
"space-id": {
"description": "The ID of the space 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('deleteSpacePropertyById', {
# Add required parameters here
})