| |||||
API Home >> Show >> API Reference >> Private
To make a presentation public.
<form method="POST"
action="http://show.zoho.com/api/private/xml/makepublic/3000000002049?apikey=[APIKEY]&ticket=[Ticket]">
<input type="submit" value="makePublic" name="submit">
</form>
| Field | Description |
| listInPublic [optional] | [boolean]
- Option to list the presentation in Zoho public presentation list. |
| Field | Description |
| presentationId | Unique ID associated with the presentation. |
| presentationName | Name of the presentation that is being made public. |
| ownerName | Displays the Email ID/Zoho ID of the presentation owner. |
| publicUrl | Displays the url of the presentation that's been made public. |
| embedUrl | Embed public presentation into your website by using the iframe code snippet. |
<?xml version="1.0" encoding="UTF-8" ?>
<response uri="/api/private/xml/makepublic/3000000002049">
<result>
<presentationId>3000000002049</presentationId>
<presentationName>inventions</presentationName>
<ownerName>iJack</ownerName>
<publicUrl>http://show.zoho.com/public/geetha/inventions</publicUrl>
<embedUrl>
<iframe src=http://show.zoho.com/ViewURL.sas?USER=geetha&DOC=inventions&IFRAME=yes height='370' width='480' name=inventions scrolling=no frameBorder='0'></iframe>
</embedUrl>
</result>
</response>
{
"response":
{
"uri": "/api/private/json/makepublic/3000000002049",
"result":
{
"presentationId":"3000000002049",
"presentationName":"inventions",
"ownerName":"iJack",
"publicUrl":"http://show.zoho.com/public/geetha/inventions",
"embedUrl":"<iframe src=http://show.zoho.com/ViewURL.sas?USER=geetha&DOC=inventions&IFRAME=yes
height='370' width='480' name=inventions scrolling=no frameBorder='0'></iframe>"
}
}
}