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