Index for Data API Methods > Zoho Planner > ZP - Create list item

ZP - Create list item

Tags:  



Create a list item.

 
 
Method name http://planner.zoho.com/api/private/xml/listitem/add
API description Given ticket, apikey and one of the listId from the list and the listItemName, returns the newly created listItem in that list on sucessful authentication.
Parameters to be passed ticket, apikey, listId and listItem
Sample call <form method="post" action="http://planner.zoho.com/api/private/xml/listitem/add?ticket=[Ticket]&apikey=[ApiKey]">

<input type="hidden" name="listId" value="134">
<input type="hidden" name="listItem" value="List Item through api">
<input type="submit" value="Create List Item" name="submit">
</form>
Output XML <response uri="/api/private/xml/listitem/add">
  <result>
    <ListItem>
      <listitem_id>130801</listitem_id>
      <list_item>Added via API</list_item>
      <sequence>1</sequence>
    </ListItem>
  </result>
</response>



 RSS of this page