GET (List)

Retrieves a list of all feeds in the system.

URL:

https://<ServerIP>:<Port>/ccp-webapp/ccp/feed?summary=<true/false>

HTTPS method:

GET

Parameters:

See Feed API Parameters.

Example:

https://<ServerIP>:<Port>/ccp-webapp/ccp/feed?summary=false

Example XML response:

Example 1:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<feeds>
    <Feed>
        <changeStamp>2</changeStamp>
        <chatInactivityTimeout>300</chatInactivityTimeout>
        <chatJoinTimeout>60</chatJoinTimeout>
        <description>My web chat feed</description>
        <name>My Chat Feed</name>
        <pushFeedURL>https://[Server]:[Port]/ccp-webapp/ccp/chatfeed/100159
        </pushFeedURL>
        <refURL>https://[Server]:[Port]/ccp-webapp/ccp/feed/100159</refURL>
        <replyTemplateRefURL>
            https://[Server]:[Port]/ccp-webapp/ccp/template/reply/302
        </replyTemplateRefURL>
        <status>1</status>
        <tags>
            <tag>tag1</tag>
            <tag>tag2</tag>
            <tag>tag3</tag>
        </tags>
        <type>8</type>
    </Feed>
    <Feed>
        <changeStamp>0</changeStamp>
        <description>callback</description>
        <name>callback</name>
        
        <pushFeedURL>http://[Server]:[Port]/ccp/rest/callback/feed/100012</pushFeedURL>
        <refURL>http://[Server]:[Port]/ccp-webapp/ccp/feed/100012</refURL>
        <status>1</status>
        <tags/>
        <type>10</type>
    </Feed>
    <Feed>
        <changeStamp>0</changeStamp>
        <description>My Task Feed</description>
        <name>My Task Feed</name>
        
        <pushFeedURL>https://[Server]:[Port]/ccp/rest/task/feed/100116</pushFeedURL>
        <refURL>https://[Server]:[Port]/ccp-webapp/ccp/feed/100116</refURL>
        <status>1</status>
        <tags>
            <tag>tag1</tag>
            <tag>tag2</tag>
            <tag>tag3</tag>
        </tags>
        <type>12</type>
    </Feed>
    <Feed>
        <changeStamp>4</changeStamp>
        <description>My Push Feed</description>
        <name>My Push Feed</name>
        <pushFeedURL>http://[Server]:[Port]/ccp-webapp/ccp/pushfeed/100019
          </pushFeedURL>
        <refURL>http://[Server]:[Port]/ccp-webapp/ccp/feed/100019</refURL>
        <status>1</status>
        <tags>
            <tag>pushfeed</tag>
            <tag>some_tag</tag>
        </tags>
        <type>7</type>
    </Feed>
    <Feed>
        <name>My Email Feed</name>
        <description>My Email Feed</description>
        <email>
            <receive>
                <host>imap.email.com</host>
                <port>993</port>
                <folderName>Inbox</folderName>
                <snapshotAge>120</snapshotAge>
            </receive>
            <send>
                <host>smtp.email.com</host>
                <port>587</port>
            </send>
            <username>me@email.com</username>
            <password>******</password>
        </email>
        <pollingInterval>60</pollingInterval>
        <replyTemplateRefURL>https://[Server]:
        [Port]/ccp-webapp/ccp/template/reply/105678</replyTemplateRefURL>
        <tags>
            <tag>tag1</tag>
            <tag>tag2</tag>
        </tags>
        <type>11</type>
    </Feed>
</feeds>

HTTPS response headers:


https/1.1 200 OK
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Tue, 12 Jan 2010 16:47:58 GMT

See also HTTPS responses.