Todo.ly REST API Method: GET /Filters

Returns the list of all Filters of the Authenticated user. These filters are currently predefined, and non hierarchical.

URL:

https://todo.ly/api/filters.format

Formats:

xml, json

HTTP Method(s):

GET

Requires Authentication:

true

Parameters:

None

Usage examples:

https://todo.ly/api/filters.xml

Response:

<ArrayOfFilterObject>
  <FilterObject>
    <Id>0</Id>
    <Content>Inbox</Content>
    <ItemsCount>1</ItemsCount>
    <Icon>0</Icon>
    <ItemType>4</ItemType>
  </FilterObject>
  <FilterObject>
    <Id>-1</Id>
    <Content>Today</Content>
    <ItemsCount>0</ItemsCount>
    <Icon>1</Icon>
    <ItemType>4</ItemType>
  </FilterObject>
  <FilterObject>
    <Id>-5</Id>
    <Content>Next</Content>
    <ItemsCount>0</ItemsCount>
    <Icon>5</Icon>
    <ItemType>4</ItemType>
  </FilterObject>
</ArrayOfFilterObject>