Metadata manipulation REST API to manage metadata properties from over 60 document, images and multimedia file formats in any language or platform.
Start Free TrialGroupDocs.Metadata Cloud SDK for Java makes it easier for developers to incorporate document metadata manipulation features within any java-based application by quickly integrating it with GroupDocs.Metadata Cloud REST API.
The metadata extraction API is flexible and feature-rich, allowing users to view, add, update, search, retrieve and remove metadata properties from various document and image file formats such as Microsoft Office (Word, Excel, PowerPoint, Outlook, Visio, OneNote, and Project), PDF, metafiles, Photoshop and AutoCAD, audio and video file types. GroupDocs.Watermark Cloud is a REST API that can be used with any language or platform of your choice. It saves you valuable development cost and time by managing API requests and responses to let you focus only on writing up the specific source code that is needed in your project.
//Get your App SID, App Key and Storage Name at https://dashboard.groupdocs.cloud (free registration is required).
String MyAppKey = ""; // Get AppKey and AppSID from https://dashboard.groupdocs.cloud
String MyAppSid = ""; // Get AppKey and AppSID from https://dashboard.groupdocs.cloud
Configuration configuration = new Configuration(MyAppSid, MyAppKey);
MetadataApi apiInstance = new MetadataApi(configuration);
RemoveOptions options = new RemoveOptions();
SearchCriteria searchCriteria = new SearchCriteria();
NameOptions nameOptions = new NameOptions();
nameOptions.setValue("Application");
searchCriteria.setNameOptions(nameOptions);
options.setSearchCriteria(searchCriteria);
FileInfo fileInfo = new FileInfo();
fileInfo.setFilePath("documents/input.docx");
options.setFileInfo(fileInfo);
RemoveRequest request = new RemoveRequest(options);
RemoveResult response = apiInstance.remove(request);