You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by Apache Wiki <wi...@apache.org> on 2010/05/07 21:33:45 UTC

[Couchdb Wiki] Update of "API_Cheatsheet" by SebastianCohnen

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Couchdb Wiki" for change notification.

The "API_Cheatsheet" page has been changed by SebastianCohnen.
The comment on this change is: added first level heading; added TOC; fixed headings.
http://wiki.apache.org/couchdb/API_Cheatsheet?action=diff&rev1=11&rev2=12

--------------------------------------------------

+ = API Cheatsheet=
+ <<TableOfContents()>>
+ 
  See [[HTTP_view_API]] for the view options that apply to many ''GET'' operations.
  
- = CouchDB Server Level =
+ == CouchDB Server Level ==
  
  ||/||Info||GET||Get MOTD and version||||
  ||/_all_dbs||Databases||GET||Get a list of databases||||
@@ -12, +15 @@

  ||/_stats||Statistics||GET /_stats||Statistics overview||||
  ||/_active_tasks||Active tasks||GET /_active_tasks||Active task list (compaction, replication, etc.)||||
  
- = Database level =
+ == Database Level ==
  
  '''Note''': Document names must always have embedded '''/''' translated to '''%2F'''. E.g. "GET /'''db'''/foo%2fbar" for the document named "foo/bar". Attachment names may have embedded slashes.
  
@@ -28, +31 @@

  
  See [[HTTP_database_API]] for more information.
  
- = Documents level =
+ == Documents Level ==
  
  ||/'''db'''/_all_docs||Documents||GET /'''db'''/_all_docs||List of all documents||||
  ||/'''db'''||Get document||GET /'''db'''/'''doc'''||Retrieve a document||||