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

deleteSmartLinkPropertyById

Delete content property for Smart Link in the content tree by id

Details

  • Method: DELETE
  • Path: /embeds/{embed-id}/properties/{property-id}
  • Operation ID: deleteSmartLinkPropertyById

Parameters

{
  "embed-id": {
    "description": "The ID of the Smart Link in the content tree 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('deleteSmartLinkPropertyById', {
    # Add required parameters here
})