ZP - Get all lists

Tags:  



Get all lists in a particular page.

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

<input type="hidden" name="pageId" value="43383">
<input type="submit" value="Get All Lists" name="submit">
</form>
Output XML <response uri="/api/private/xml/lists">
  <result>
    <PageDetail>
      <page_id>43383</page_id>
      <page_title>Daily works</page_title>
      <is_homepage>true</is_homepage>
      <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>
    </PageDetail>
  </result>
</response>





 RSS of this page