Listflock API

todos/edit


Spec

Auth

User

Lists

Todos

Edit a todo item.

Request url

http://listflock.com/api-0.1/todos/edit/


Parameters

api_key (Required) : The api key of your application.
sk (Required) : 32 character string returned through the authentication process.
api_sig (Required) : Signature for the request as described in the authentication spec.
todo_id (Required) : The id of the todo item to edit.
name (Required) : The short name of the todo item.
details (Optional) : A longer paragraph relating the the todo.

This request must be be made using HTTP POST.

Auth

This request does require authentication

Sample Response

<api status="ok">
   <todo>
      <id>17</id>
      <name>Get a paper</name>
      <details><![CDATA[Go to tescos to get a Telegraph.]]></details>
      <list_id>4</list_id>
      <status>0</status>
   </todo>
</api>

Errors