Notes are ordered by age, eldest first.
<request>
<token>202cb962ac59075b964b07152d234b70</token>
</request>
Status: 200 OK
<response success='true'>
<notes>
<note id='1132' title='My world!' created_at='2007-07-03 19:15:55'>
It's a pretty place
</note>
<note id='1133' title='Your world!' created_at='2007-07-03 19:20:00'>
Also pretty
</note>
</notes>
</response>
Add a new note to the page.
<request>
<token>202cb962ac59075b964b07152d234b70</token>
<note>
<title>My new note!</title>
<body>I'm a new note!</body>
</note>
</request>
Status: 200 OK
<response success='true'>
<note id='5' title='My new note!' created_at='2007-07-03 19:21:00'>
I'm a new note!
</note>
</response>
Change a note.
<request>
<token>202cb962ac59075b964b07152d234b70</token>
<note>
<title>My updated note!</title>
<body>I'm updated here too!</body>
</note>
</request>
Status: 200 OK
<response success='true' />
Remove a note from the page.
<request>
<token>202cb962ac59075b964b07152d234b70</token>
</request>
Status: 200 OK
<response success='true' />