Zimbra REST API Reference:Get Folder: Difference between revisions

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


Retrieve the mycustomers folder, query for phrase "new automobile", in XML format:
Retrieve the mycustomers folder, in JSON format:
<pre>
<pre>
http://localhost:7070/home/john.doe/mycustomers?fmt=xml&query="new+automobile"
http://localhost:7070/home/john.doe/mycustomers?fmt=json
</pre>
</pre>

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, in JSON format:

http://localhost:7070/home/john.doe/mycustomers?fmt=json
Jump to: navigation, search