| |||||
API Home >> Show >> API Reference >> Private
To share a presentation with a set of users.
| Field | Description |
| shareto | [string] - One or more Email IDs of Zoho Show users to whom the presentation is to be shared. For adding multiple users, separate them by 'comma'. |
| allowtowrite | [boolean] - Give access permission for editing the presentation to shared users. If true, then the users are allowed "Read/Write" access |
| notify [optional] | [boolean] - Sends notifications to the owner of the changes made to the presentation by shared users, if set to 'true'. |
| sendmail [optional] | [boolean] - Sends customised email message to the shared users, if set to 'true' |
<form method="POST"
action="http://show.zoho.com/api/private/xml/sharepresentation/3000000002057?apikey=[APIKEY]&ticket=[Ticket]" >
<input type="hidden" name="shareto" value="[Email IDs]">
<input type="hidden" name="allowtowrite" value="[true/false]">
<input type="submit"
value="sharepresentation" name="submit">
</form>
| Field | Description |
| presentationId | Unique ID associated with the uploaded presentation. |
| presentationName | Name of the presentation that is being uploaded. |
| sharedTo | One or more Email IDs of Zoho Show users to whom the presentation is to be shared. For adding multiple users, separate them by 'comma'. |
<?xml version="1.0" encoding="UTF-8" ?>
<response uri="/api/private/xml/sharepresentation/3000000002057">
<result>
<presentationId>3000000002057</presentationId>
<presentationName>newtest</presentationName>
<sharedTo>abc@gmail.com, pqr@mail.com, aa@email.com</sharedTo>
</result>
</response>
{
"response":
{
"uri": "/api/private/json/sharepresentation/3000000002057",
"result":
{
"presentationId":"3000000002057",
"presentationName":"newtest",
"sharedTo":"abc@gmail.com, pqr@mail.com, aa@email.com"
}
}
}