Zoho - Trademark Blogs   Forums   Contact Us   Show Home   Toll Free : 888 900 9646
API METHOD - (< Back)

show.getTrashedPresentationsUsed to get the list of trashed presentations.


Arguments


1. [struct] - required*

Containing Keys:

Field Description
fromindex (optional)

[scalar] - optional - Sets the initial presentation number from which the trashed presentations will be listed. If there are 10 presentations & fromindex value is set to 3, the presentations will be listed from the 3rd presentation.

noofdocstoshow (optional)

[scalar] - optional - Sets the number of trashed presentations to be listed. If the value is set to 5, then no of presentations listed is 5.


If no value is specified in fromindex & noofdocstoshow, all the trashed presentations will be listed.

Sample call to show.getTrashedPresentations

POST /interface/xmlrpc HTTP/1.0
Host: http://www.show.zoho.com/
Content-Type: text/xml
Content-Length:

<?xml version=\"1.0\" encoding=\"UTF-8\"?>

<methodCall xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://show.zoho.com/schema/presentations.xsd">
    <methodName>show.getTrashedPresentations</methodName>
        <params>
            <param>
                <value>
                    <struct>
                    <member>
                        <name>fromindex</name>
                        <value><int>3</int></value>
                    </member>
                    <member>
                        <name>noofdocstoshow</name>
                        <value><long>7</long></value>
                    </member>
                    </struct>
                </value>
            </param>
        </params>
</methodCall>


Response


Sample return value for show.getTrashedPresentations

HTTP/1.1 200 OK
Connection: close
Content-Length:

Content-Type: text/xml
Date: Wed 01 Nov 2006 23:45:59 GMT
Server: Apache/1.3.4 (Unix)

<methodResponse xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://show.zoho.com/schema/responsetrashed.xsd">
    <TrashedPresentations>
        <presentation>
        <presentation_name>Enigma</presentation_name>
        <presentation_id>1000000077095</presentation_id>
        <author_name>shaunmarsh</author_name>
        <created_date>Wed, Sep 27, 2006</created_date> 
        <is_public>false</is_public> 
        <last_modifiedtime>55 minutes ago</last_modifiedtime> 
        <slide_transitiontime>0</slide_transitiontime> 
        </presentation>
    </TrashedPresentations>
</methodResponse>