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

show.importPresentation - Import a presentation to a Zoho Show account.


Arguments


1. [struct] - required*

Containing Keys:

Field Description
presentationname

[scalar] - required* - Name of the presentation that is to be uploaded to Zoho Show account.

content

[scalar] - required* - Base 64 encoded content of the presentation that is being uploaded.


Sample call to show.importPresentation

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/importpresentation.xsd">
    <methodName>show.importPresentation</methodName>
        <params>
            <param>
                <value>
                    <struct>
                        <member>
                            <name>presentationname</name>
                            <value><string>import</string></value>
                        </member>
                        <member>
                            <name>content</name>
                            <value>[Base 64 encoded content]</value>
                        </member>

                    </struct>
                </value>
            </param>
        </params>
</methodCall>


Response


Sample return value for show.importPresentation

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/responseimportpres.xsd">
        <presentation_name>import</presentation_name>
        <presentation_id>5000008500288</presentation_id>
        <author_name>martincampbell@mail.com</author_name>
        <created_date>Thu, Jan 11, 2007</created_date>
</methodResponse>