| Method name |
http://planner.zoho.com/api/private/xml/note/add |
| API description |
Given the ticket, apikey, pageId from the list of pages
and noteTitle
or noteBody, creates a new notes in that page on successful
authentication. |
| Parameters
to be passed |
ticket, apikey, pageId, pageTitle or
pageBody |
| Sample call |
<form method="post"
action="http://planner.zoho.com/api/private/xml/note/add?ticket=[Ticket]&apikey=[ApiKey]">
<input type="hidden" name="pageId" value="7678">
<input type="hidden" name="noteTitle" value="Added via API">
<input type="hidden" name="noteBody" value="Body throu api">
<input type="submit" value="Add Notes" name="submit">
</form>
|
| Output XML |
<response
uri="/api/private/xml/note/add">
<result>
<Notes>
<note_id>38701</note_id>
<note_title>Added via
API</note_title>
<note_body>Body throu
api</note_body>
<posted_date>Wed, 6 Jun
2007</posted_date>
</Notes>
</result>
</response> |