How do I convert a presentation from one format to another? Any sample codes?
How do I convert a presentation from one format to another? Any sample codes?
To convert a presentation from one format (say .
pptx
) to another (say
.ppsx, .odp, .pdf
), you need to make use of Zoho Show's
Conversion API
.
HTML Sample Code:
<form method="POST" action="
https://show.zoho.com/show/officeapi/v1/presentation/convert
" enctype="multipart/form-data" target="_self" accept-charset="UTF-8">
Upload Presentation: <input type="file" name="document" size="38"> <br>
<input type="hidden" name="apikey" value="423s*****">
<input type="hidden" name="format" value="pdf">
<input type="submit" name="submit" value="submit">
</form>
Curl Sample Code:
curl --request POST \
--url '
https://show.zoho.com/show/officeapi/v1/presentation/convert?apikey=423s*****
' \
--header 'content-type: multipart/form-data; boundary=----WebKitFormBoundary7MA4YWxkTrZu0gW' \
--form document=@/Users/username/Presentation/Sample.pptx \
--form format=pdf
You can also build and test Conversion Presentation API requests right from your browser with Office Integrator
Postman Collection
.