Data Feeds
Sometimes it's useful to access a summary of your inbox or tasks data to feed into external systems like personal dashboards.
This can be achieved from the Public Feeds screen.
Simply enable the feeds you wish to use by selecting the corresponding checkboxes.
Feeds come in 3 flavors:
- plain text count These urls would return a simple number representing a total count of messages or tasks
- JSON summary array These urls would return a JSON structured array with summary details, eg:
[
{
"date":"2020-06-07",
"priority":"0",
"title":"Remember the milk"
},
{
"date":"",
"priority":"-1",
"title":"inbox marketing materials"
}
]
- RSS summary feed These urls would return an Atom RSS XML feed with summary details, eg:
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
<item>
<date>2020-06-07</date>
<title>Remember the milk</title>
</item>
<item>
<date></date>
<title>inbox marketing materials</title>
</item>
</rss>