ZP - Get all notes

Tags:  



Get all notes present in a particular page.

 
 
Method name http://planner.zoho.com/api/private/xml/notes
API description Given ticket, apikey and one of the user's pageId, all the notes in that page will be listed on successful authentication.
Parameters to be passed ticket, apikey, pageId
Sample call <form method="post" action="http://planner.zoho.com/api/private/xml/notes?ticket=[Ticket]&apikey=[ApiKey]">

<input type="hidden" name="pageId" value="7678">
<input type="submit" value="Get All Notes" name="submit">
</form>
Output XML response uri="/api/private/xml/notes">
  <result>
    <PageDetail>
      <page_id>7678</page_id>
      <page_title>Zoho Planner Read Me</page_title>
      <is_homepage>false</is_homepage>
      <PageNotes>
        <Notes>
          <note_id>38101</note_id>
          <note_title>Test Note</note_title>
          <note_body>testing</note_body>
          <posted_date>Thu, 31 May 2007</posted_date>
        </Notes>
        <Notes>
          <note_id>6658</note_id>
          <note_title>Hmmmm</note_title>
          <note_body>
            Lists, notes, a body at the top?   Looks kinda familiar.  *cough* backpack *cough*.

            However, appointments are a potentially nice feature, but there are no file attachments.

            I got it, i can attach files its named as attachments
          </note_body>
          <posted_date>Fri, 3 Mar 2006</posted_date>
        </Notes>
      </PageNotes>
    </PageDetail>
  </result>
</response>



 RSS of this page