Open Context Protocol is live! 🚀 Read the launch post

deleteSmartLink

Delete Smart Link in the content tree

Details

  • Method: DELETE
  • Path: /embeds/{id}
  • Operation ID: deleteSmartLink

Parameters

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