Convert Documents with file



Purpose 

To convert a file format (say docx) to any other file format (say html or txt) supported by Zoho Writer.

Supported file formats -> docx, odt, rtf, txt, html, pdf 

HTTP Request URL

https://{zohoapis_domain}/writer/api/v1/documents/convert

Body Parameters

ParameterData TypeDescription
Mandatory Parameters
contentFileSpecify the required content in your API request body.
formatStringSpecify the format of the document to be converted.
Supported file formats - docx, odt, rtf, txt, html, pdf
filenameStringSpecify a name to the document to be converted.
Optional Parameter
PasswordStringSpecify a unique password for the document to be converted.
Note: PDF file format is not supported during import.

Sample Request

Copiedcurl --location --request POST "https://www.zohoapis.com/writer/api/v1/documents/convert" \
  --header "Authorization: Zoho-oauthtoken xxx.yyy.zzz" \
  --form "content=@" \
  --form "format=docx" \
  --form "filename=Output FileName"

Sample Response

Coverted document will be downloaded.