| |||||
API Home >> Show >> API Reference >> Private
To trash a particular presentation i.e. move it to the trash folder
<form method="POST"
action="http://show.zoho.com/api/private/xml/trashpresentation/3000000005001?apikey=[APIKEY]&ticket=[Ticket]">
<input type="submit"
value="TrashPresentation"
name="submit">
</form>
| Field | Description |
| presentationId | Unique ID associated with each presentation. |
| presentationName | Name of the presentation that is being trashed. |
| ownerName | Displays the Email ID/Zoho ID of the presentation owner, i.e., the account from which the presentation is created |
| createdTime | [Long Value] - Displays the created date of the presentation |
| trashedTime | [Long Value] - Specifies the date on which the presentation was trashed. |
<?xml version="1.0" encoding="UTF-8" ?>
<response uri="/api/private/xml/trashpresentation/3000000005001">
<result>
<presentationId>3000000005001</presentationId>
<presentationName>ajax</presentationName>
<ownerName>Roger</ownerName>
<createdTime>15117765098832</createdTime>
<trashedTime>15117765108832</trashedTime>
</result>
</response>
{
"response":
{
"uri": "/api/private/json/trashpresentation/3000000005001",
"result":
{
"presentationId":"30000000005001",
"presentationName":"ajax",
"ownerName":"Roger",
"createdTime":"15117765098832",
"trashedTime":"15117765108832"
}
}
}