Lists the pages in your account.
<request>
<token>202cb962ac59075b964b07152d234b70</token>
</request>
Status: 200 OK
<response success='true'>
<pages>
<page scope='personal' title='Example page' id='1134' />
<page scope='personal' title='Movie Titles' id='1136' />
<page scope='friends' title='Ajax Summit' id='1133' />
</pages>
</response>
Search the pages in your account.
<request>
<token>202cb962ac59075b964b07152d234b70</token>
<term>needle</term>
</request>
Status: 200 OK
<response success='true'>
<pages>
<page title='Haystack' id='1134' />
<page title='Sewing' id='2482' />
</pages>
</response>
Create a new page.
<request>
<token>202cb962ac59075b964b07152d234b70</token>
<page><title>My new page!</title></page>
</request>
Status: 200 OK
<response success='true'>
<page title='My new page!' id='1234' />
</response>
Returns a single page.
<request>
<token>202cb962ac59075b964b07152d234b70</token>
</request>
Status: 200 OK
<response success='true'>
<page title='Ajax Summit' id='1133' email_address='ry87ib@backpackit.com'>
<belongings>
<belonging id='783'>
<position>1</position>
<widget type='Note' id='1019' />
</belonging>
<belonging id='784'>
<position>2</position>
<widget type='Note' id='1020' />
</belonging>
<belonging id='785'>
<position>3</position>
<widget type='List' id='937' />
</belonging>
</belongings>
<notes>
<note title='' id='1019' created_at='2005-05-14 16:39:02'>
With O'Reilly and Adaptive Path
</note>
<note title='Hotel' id='1020' created_at='2005-05-14 16:41:11'>
Staying at the Savoy
</note>
</notes>
<lists>
<list id='937' name='Trip to SF'>
<items>
<item id='3308' completed="false">See San Francisco</item>
<item id='3303' completed="true">Meet interesting people</item>
<item id='3307' completed="true">Present Backpack</item>
</items>
</list>
</lists>
<tags>
<tag name='Technology' id='4' />
<tag name='Travel' id='5' />
</tags>
</page>
</response>
Reorder the items on the page.
<request>
<token>202cb962ac59075b964b07152d234b70</token>
<belongings>785 783 784</belongings>
</request>
Status: 200 OK
<response success='true' />
Destroy a page.
<request>
<token>202cb962ac59075b964b07152d234b70</token>
</request>
Status: 200 OK
<response success='true' />
Change the page title.
<request>
<token>202cb962ac59075b964b07152d234b70</token>
<page><title>I'm a new title!</title></page>
</request>
Status: 200 OK
<response success='true' />
Copy a page.
<request>
<token>202cb962ac59075b964b07152d234b70</token>
</request>
Status: 200 OK
<response success='true'>
<page title='My new page! (copy)' id='1235' />
</response>
Shares a page with friends or make it public. Both email_addresses and public parameters are optional. You can do both at the same time or just one at a time. Public is 1 = true, 0 = false.
<request>
<token>202cb962ac59075b964b07152d234b70</token>
<email_addresses>
first_friend@example.com second@example.com
another@example.com
</email_addresses>
<page>
<public>1</public>
</page>
</request>
Status: 200 OK
<response success='true' />
Remove a page a friend shared with you.
<request>
<token>202cb962ac59075b964b07152d234b70</token>
</request>
Status: 200 OK
<response success='true' />
Email a text version of a page to yourself.
<request>
<token>202cb962ac59075b964b07152d234b70</token>
</request>
Status: 200 OK
<response success='true' />