Zimbra REST API Reference:Get Folder: Difference between revisions

No edit summary
Line 12: Line 12:
</pre>
</pre>


== Folder Name ==
=== Folder Name ===


Specifies the mail folder to access and must be specified. Values include:
The name of the mail folder to access. Must be specified and possible values include:


<ul>
<ul>
Line 22: Line 22:
<li><code>trash</code>. The trash folder.</li>
<li><code>trash</code>. The trash folder.</li>
<li><code>junk</code>. The junk/spam folder.</li>
<li><code>junk</code>. The junk/spam folder.</li>
<li><code>{custom folder}</code>. The folder name.</li>
</ul>
</ul>



Revision as of 19:44, 16 January 2010

<< Back to Zimbra REST API Reference


REST API Method: Get Folder

Gets the items in the folder.

URL

http://localhost:7070/home/john.doe/{folder-name}?{params}

Folder Name

The name of the mail folder to access. Must be specified and possible values include:

  • inbox. The inbox folder.
  • drafts. The drafts folder.
  • sent. The sent items folder.
  • trash. The trash folder.
  • junk. The junk/spam folder.

Formats

xml,json,rss,tar,tgz,zip

Go to "Formats"

Requires Authentication

true

Go to "Authentication"

Parameters

  • fmt. Required. The response format.
  • query. Optional. A query string or keywords.

Usage Examples

Retrieve the inbox folder in RSS format:

http://localhost:7070/home/john.doe/inbox?fmt=rss

Retrieve the inbox folder in XML format:

http://localhost:7070/home/john.doe/inbox?fmt=xml

Retrieve the drafts folder, query for keyword "automobile", in XML format:

http://localhost:7070/home/john.doe/drafts?fmt=xml&query=automobile

Retrieve the inbox folder, query for keywords "automobile" and "highway", in XML format:

http://localhost:7070/home/john.doe/inbox?fmt=xml&query=automobile+highway

Retrieve the inbox folder, query for phrase "new automobile", in XML format:

http://localhost:7070/home/john.doe/inbox?fmt=xml&query="new+automobile"

Retrieve the mycustomers folder, query for phrase "new automobile", in XML format:

http://localhost:7070/home/john.doe/mycustomers?fmt=xml&query="new+automobile"
Jump to: navigation, search