1
0
Fork 0
arangodb/Documentation/Books/Users/HttpDatabase
Wilfried Goesgens e0f29a57c5 Remove whitespaces that may irretate our parser, add checks. 2015-12-04 15:17:36 +01:00
..
DatabaseEndpoint.mdpp Fix dangling anchors and add checker script to the make target. 2015-11-26 18:51:39 +01:00
DatabaseManagement.mdpp Documentation: corrected typos and case, prefer American over British English 2015-09-01 17:19:13 +02:00
NotesOnDatabases.mdpp Remove whitespaces that may irretate our parser, add checks. 2015-12-04 15:17:36 +01:00
README.mdpp Fix dangling anchors and add checker script to the make target. 2015-11-26 18:51:39 +01:00

README.mdpp

!CHAPTER HTTP Interface for Databases

!SUBSECTION Address of a Database

Any operation triggered via ArangoDB's HTTP REST API is executed in the context of exactly
one database. To explicitly specify the database in a request, the request URI must contain
the [database name](../Glossary/README.md#database-name) in front of the actual path:

    http://localhost:8529/_db/mydb/...

where *...* is the actual path to the accessed resource. In the example, the resource will be
accessed in the context of the database *mydb*. Actual URLs in the context of *mydb* could look
like this:

    http://localhost:8529/_db/mydb/_api/version
    http://localhost:8529/_db/mydb/_api/document/test/12345
    http://localhost:8529/_db/mydb/myapp/get