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