Listflock API

todos/get


Spec

Auth

User

Lists

Todos

Returns all the todo items for a list.

Request url

http://listflock.com/api-0.1/todos/get/?api_key=<key>&sk=<sessionkey>&list_id=<list_id>&api_sig=<signature>


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.
list_id (Required) : The unique identifier for the list.
status (Optional) : Will return just complete or uncomplete todos.

This request must be be made using HTTP GET.

Auth

This request does require authentication

Sample Response

<api status="ok">
   <todos returned="2">
      <todo>
         <id>15</id>
         <name>Electronics Coursework</name>
         <details></details>
         <list_id>5</list_id>
         <status>0</status>
      </todo>
      <todo>
         <id>16</id>
         <name>Walk the dog</name>
         <details>Take her to the park.</details>
         <list_id>5</list_id>
         <status>1</status>
      </todo>
   </todos>
</api>

Errors