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 \
  --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.



    • Related Articles

    • How do I edit presentation in Zoho Show? Any sample codes?

      To edit an existing presentation from your web application, you need to make use of Zoho Show's Edit Presentation API. HTML Sample Code: <form method="POST" action="https://show.zoho.com/show/officeapi/v1/presentation" enctype="multipart/form-data" ...
    • How do I create a new presentation in Zoho Show? Any sample codes?

      To create a new presentation, please leave the "document" or "url" parameter in the  Edit API request  as blank. Zoho Show will create a new presentation by default if no content is provided in the Edit request. HTML Sample Code: <form method="POST" ...
    • Preview

      Preview how a survey will look on smartphones, tablets and desktops at any point before or after it is published. This preview can be shared with your friends and colleagues to gather their opinions on the theme you've used. You can also preview a ...
    • 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" ...
    • How do I preview a document in Zoho Writer? Any sample codes?

      To preview a document or open it in read-only mode, you need to make use of Zoho Writer's Preview Document API. HTML Sample Code: <form method="POST" action="https://writer.zoho.com/writer/officeapi/v1/document/preview" enctype="multipart/form-data" ...