Todo.ly REST API Method: GET /Filters/Id/DoneItems

Returns the list of Done Items within the given filter. The item list is in Hierarchy. Items and sub items.
It contains all the items within the filter that was checked by the user, and considered as ‘done’.

URL:

https://todo.ly/api/filters/[id]/doneitems.format

Formats:

xml, json

HTTP Method(s):

GET

Requires Authentication:

true

Parameters:

None

Usage examples:

https://todo.ly/api/filters/-1/doneitems.xml

Response:

<ArrayOfItemObject> 
  <ItemObject> 
    <Id>1027</Id> 
    <Content>This item is done</Content> 
    <ItemType>3</ItemType> 
    <Checked>true</Checked> 
    <ProjectId>192</ProjectId> 
    <ParentId>0</ParentId> 
    <Path /> 
    <Collapsed>false</Collapsed> 
    <DateString /> 
    <DateStringPriority>0</DateStringPriority> 
    <DueDate />     
    <ItemOrder>1</ItemOrder> 
    <Priority>4</Priority> 
    <Children /> 
  </ItemObject> 
</ArrayOfItemObject>