Home / ... / Data API Reference / Show Data APIs / Create New Presentation

Create New Presentation


The API is used to create a new presentation for a particular Zoho account.

Request URI:

Developers can send the request in the following URI format:
https://show.zoho.com/api/<access>/<format>/newpresentation/[presentationname]?apikey=[API Key]&authtoken=[AuthToken]&scope=DataAPI
Access : private

Format : xml, json

HTTPs Method : POST
 
Multi-part Form Submit - Sample
<form method="POST" action="https://show.zoho.com/api/private/xml/newpresentation/[presentationname]" enctype="multipart/form-data" 
target="_self" accept-charset="UTF-8">

<input type="hidden" name="apikey" value="[Zoho_API_Key]">
<input type="hidden" name ="authtoken" id="authtoken" value="bad18eba1ff45jk7858b8ae88a77fa30">
<input type="hidden" name ="scope" id="scope" value="DataAPI">
<input type="submit" name="submit" value="New Presentation">
</form>
Response Parameters Reference

ParameterValue
Description
presentationId
integer
Unique ID associated with the newly created presentation.
presentationName
string
Name of the newly created presentation.
createdTime
integer
Number of milliseconds between the spreadsheet's created time and midnight, January 1, 1970 UTC.

Sample Response :

The following is a response (both in XML & JSON) for creating a new presentation in a particular Zoho account.

XML 
<?xml version="1.0" encoding="UTF-8" ?> 
<response uri="/api/private/xml/newpresentation/MonthlySales">
<result>

<presentationId>15265000000006107</presentationId>
<presentationName>MonthlySales</presentationName>
<createdTime>1172137033182</createdTime>

</result>
</response>
JSON
{
"response":
{
"uri": "/api/private/json/newpresentation/MonthlySales",
"result":
{
"presentationId":"15265000000006107",
"presentationName":"MonthlySales",
"createdTime":1172137033182,
}
}
}




    Post a comment

    Your Name or E-mail ID (mandatory)

    Note: Your comment will be published after approval of the owner.




     RSS of this page