Todo.ly REST API Method: DELETE /Items/Id

Deletes the item with the given Id.

URL:

https://todo.ly/api/items/[id].format

Formats:

xml, json

HTTP Method(s):

DELETE

Requires Authentication:

true

Parameters:

None

Usage examples:

https://todo.ly/api/items/1033.xml

Response:

The response contain the details of the deleted item.

  <ItemObject>
    <Id>1033</Id>
    <Content>New Item</Content>
    <ItemType>1</ItemType>
    <Checked>true</Checked>
    <ProjectId>192</ProjectId>
    <ParentId>0</ParentId>
    <Path />
    <Collapsed>false</Collapsed>
    <DateString />
    <DateStringPriority>0</DateStringPriority>
    <DueDate />
    <ItemOrder>0</ItemOrder>
    <Priority>4</Priority>
    <Children />
  </ItemObject>