<?xml version="1.0"?>
<commands xmlns="">
	<!--
		For full API documentation, see:
		http://www.backpackit.com/api/
	-->
	<section name="pages">
		<command description="List all pages" command="pages/all" arguments="token" />
		<command description="Create a new page" command="pages/new"
			arguments="token page title description" />
		<command description="Show a page" command="page/{PAGE_ID}" arguments="token" />
		<command description="Destroy a page" command="page/{PAGE_ID}/destroy"
			arguments="token" />
		<command description="Update the title of a page"
			command="page/{PAGE_ID}/update_title" arguments="token page title" />
		<command description="Update the body of a page" command="page/{PAGE_ID}/update_body"
			arguments="token page description" />
		<command description="Duplicate a page" command="page/{PAGE_ID}/duplicate"
			arguments="token" />
		<command description="Link one page to another" command="page/{PAGE_ID}/link"
			arguments="token linked_page_id" />
		<command description="Unlink one page from another" command="page/{PAGE_ID}/unlink"
			arguments="token linked_page_id" />
		<command description="Share a page with other users" command="page/{PAGE_ID}/share"
			arguments="token email_addresses page public" />
		<command description="Unshare yourself from a friend's page"
			command="pages/{PAGE_ID}/unshare_friend_page" arguments="token" />
		<command description="Email a page to yourself" command="page/{PAGE_ID}/email"
			arguments="token" />
	</section>
	<section name="lists">
		<command description="List items on a page" command="page/{PAGE_ID}/items/list"
			arguments="token" />
	</section>
	<section name="items">
		<command description="Create a new item" command="page/{PAGE_ID}/items/add"
			arguments="token item content" />
		<command description="Update an item" command="page/{PAGE_ID}/update/{ITEM_ID}"
			arguments="token item content" />
		<command description="Toggle the state of an item"
			command="page/{PAGE_ID}/items/toggle/{ITEM_ID}" arguments="token" />
		<command description="Destroy an item" command="page/{PAGE_ID}/items/destroy/{ITEM_ID}"
			arguments="token" />
		<command description="Move an item within a list" command="page/{PAGE_ID}/items/move/{ITEM_ID}"
			arguments="token direction" />
	</section>
	<section name="notes">
		<command description="List notes on a page" command="page/{PAGE_ID}/notes/list"
			arguments="token" />
		<command description="Create a new note" command="page/{PAGE_ID}/notes/create"
			arguments="token note title body" />
		<command description="Update a note" command="page/{PAGE_ID}/notes/update/{NOTE_ID}"
			arguments="token note title body" />
		<command description="Destroy a note" command="page/{PAGE_ID}/notes/destroy/{NOTE_ID}"
			arguments="token" />
	</section>
	<section name="tags">
		<command description="Show pages matching a tag" command="tags/select/{TAG_ID}"
			arguments="token" />
		<command description="Tag a page" command="page/{PAGE_ID}/tags/tag"
			arguments="token tags" />
	</section>
	<section name="reminders">
		<command description="List upcoming reminders" command="reminders"
			arguments="token" />
		<command description="Create a reminder" command="reminders/create"
			arguments="token reminder content remind_at" />
		<command description="Update a reminder" command="reminders/update/{REMINDER_ID}"
			arguments="token reminder content remind_at" />
		<command description="Destroy a reminder" command="reminders/destroy/{REMINDER_ID}"
			arguments="token" />
	</section>
	<section name="emails">
		<command description="List all emails for a page" command="page/{PAGE_ID}/emails/list"
			arguments="token" />
		<command description="Show an email" command="page/{PAGE_ID}/emails/show/{EMAIL_ID}"
			arguments="token" />
		<command description="Destroy an email"
			command="page/{PAGE_ID}/emails/destroy/{EMAIL_ID}" arguments="token" />
	</section>
	<section name="account">
		<command description="Export a backpack account" command="account/export"
			arguments="token" />
	</section>
</commands>
