kamesh v
kamesh v

Reputation: 77

How to convert Google document to MS Word format using Google Drive API?

I created a Google document file in Google Drive. How can I convert that file to a Word document using Google Drive API.

Upvotes: 2

Views: 1453

Answers (1)

Mr.Rebot
Mr.Rebot

Reputation: 6791

Drive v3

Depending on the type of download you'd like to perform — a file, a Google Document, or a content link — you'll use one of the following URLs:


Drive v2

Depending on the type of download you'd like to perform — a file, a Google Document, or a content link — you'll use one of the following URLs:

Google Doc formats and supported export MIME types map to each other as follows:

MS Word document application/vnd.openxmlformats-officedocument.wordprocessingml.document

If you are trying to do it programmatically try following this tutorial using Apps Script.

Upvotes: 2

Related Questions