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:
<input type="hidden" name="apikey" value="423s*****">
<input type="hidden" name="permissions" value='{"document.export":true,"document.print":true,"document.edit":true}'>
<input type="hidden" name="editor_settings" value='{"language":"en"}'>
<input type="hidden" name="callback_settings" value='{"save_format":"pptx","save_url":"https://zylker.com/save.php ","context_info":"Doc/User Info"}'> <input type="hidden" name="document_info" value='{"document_name":"New Presentation", "document_id":"10054809"}'>
<input type="hidden" name="user_info" value='{"user_id":"1000", "display_name":"Keri"}'>
<input type="submit" name="submit" value="Create New Presentation">
</form>
Curl Sample Code:
curl -X POST \
-H 'content-type: multipart/form-data; boundary=----WebKitFormBoundary7MA4YWxkTrZu0gW' \
-F apikey=423s***** \
-F 'editor_settings={'\''language'\'':'\''en'\''}' \
-F 'permissions={'\''document.export'\'':true,'\''document.print'\'':true,'\''document.edit'\'':true}' \
-F 'document_info={'\''document_name'\'':'\''New Presentation'\'', '\''document_id'\'': 10054809}' \
-F 'user_info={'\''user_id'\'':'\''1000'\'','\''display_name'\'':'\''Keri'\''}'
You can also build and test create new presentation requests right from your browser with Office Integrator
Postman Collection .
Related Articles
Create a New Presentation in Zoho Show
Create slides from scratch, with the ability to edit, share, and present them on the go. Customize your slides by adding your favorite background, choosing the right fonts, and inserting pictures, shapes, animations, transitions, and more. Zoho Show ...
Sample Codes - Java SDK
All of Zoho CRM's APIs can be used through the Java SDK, to enable your custom application to perform data sync to the best degree. Here are the sample codes for all the API methods available in our SDK. Rest Client Operations These methods involve ...
Sample Codes - Python SDK
All of Zoho CRM's APIs can be used through the Python SDK, to enable your custom application to perform data sync to the best degree. Here are the sample codes for all the API methods available in our SDK. Rest Client Operations These methods involve ...
Sample Codes - C# SDK
All of Zoho CRM's APIs can be used through the C# SDK, to enable your custom application to perform data sync to the best degree. Here are the sample codes for all the API methods available in our SDK. Rest Client Operations These methods involve ...
Create a new presentation with Zoho Show extension
The Show extension for Chrome makes it easy to create and publish presentations. You can easily customize slides with themes, background fills, animations, transitions, and more. Additionally, you can, add comments, review slides, and collaborate ...