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

deleteAttachmentPropertyById

Delete content property for attachment by id

Details

  • Method: DELETE
  • Path: /attachments/{attachment-id}/properties/{property-id}
  • Operation ID: deleteAttachmentPropertyById

Parameters

{
  "attachment-id": {
    "description": "The ID of the attachment the property belongs to.",
    "required": true,
    "location": "path",
    "type": "string"
  },
  "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('deleteAttachmentPropertyById', {
    # Add required parameters here
})