// For more code snippets, please https://github.com/aspose-words-cloud/aspose-words-cloud-java try { String clientId = "bb959721-5780-4be6-be35-ff5c3a6aa4a2"; String clientSecret = "4d84d5f6584160cbd91dba1fe145db14"; // if baseUrl is null, WordsApi uses default https://api.aspose.cloud WordsApi wordsApi = new WordsApi(clientId, clientSecret, null); String format = "md"; // now create a new object of GetDocumentWithFormatRequest GetDocumentWithFormatRequest convertRequest = new GetDocumentWithFormatRequest("sample_EmbeddedOLE.docx",format,null, null, null,null,null,"Converted.md",null); // now call the method to initiate the conversion operation // the resultant file is stored in cloud storage wordsApi.getDocumentWithFormat(convertRequest); }catch(Exception ex) { System.out.println(ex); }