Index for Data API Methods > Zoho Planner > ZP - Get all list items

ZP - Get all list items

Tags:  



Get all list items in a page.

 
 
Method name http://planner.zoho.com/api/private/xml/listitems
API description Given ticket, apikey and listId, returns all the lists in that page on successful authentication.
Parameters to be passed ticket, apikey and listId
Sample call <form method="post" action="http://planner.zoho.com/api/private/xml/listitems?ticket=[Ticket]&apikey=[ApiKey]">

<input type="hidden" name="listId" value="47701">
<input type="submit" value="Get All List Items" name="submit">
</form>
Output XML <response uri="/api/private/xml/listitems">
  <result>
    <PageList>
      <List>
        <list_id>47701</list_id>
        <list_name>May work items</list_name>
        <ListItem>
          <listitem_id>129901</listitem_id>
          <list_item>LC from the medical shop</list_item>
          <is_completed>false</is_completed>
        </ListItem>
        <ListItem>
          <listitem_id>129902</listitem_id>
          <list_item>Airtel connection from Arumugam</list_item>
          <list_schedule_date>Thu, 22 Nov 2007</list_schedule_date>
          <is_completed>true</is_completed>
        </ListItem>
        <ListItem>
          <listitem_id>129903</listitem_id>
          <list_item>New mobile + new battery purchace</list_item>
          <is_completed>true</is_completed>
        </ListItem>
      </List>
    </PageList>
  </result>
</response>



 RSS of this page