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 2012/12/24 19:39:01 UTC

[Couchdb Wiki] Update of "HTTP_Document_API" by RobertNewson

Dear Wiki user,

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

The "HTTP_Document_API" page has been changed by RobertNewson:
http://wiki.apache.org/couchdb/HTTP_Document_API?action=diff&rev1=92&rev2=93

Comment:
fix typo in http request line

  To get a listing of all documents in a database, use the special ''_all_docs'' URI. This is a specialized View so the Querying Options of the [[HTTP_view_API]] apply here.
  
  {{{
- GET somedatabase/_all_docs HTTP/1.0
+ GET /somedatabase/_all_docs HTTP/1.0
  }}}
  Will return a listing of all documents and their revision IDs, ordered by DocID (case sensitive):