Skip to content

List collections on appdb

Luiz Carlos Faria edited this page Mar 13, 2018 · 1 revision

List collections on appdb

Request

curl -i -X GET \
   -H "Authorization:Basic YWRtaW46YWRtaW4=" \
 'http://localhost:10080/appdb/'

Response

{
    "_embedded": [
        {
            "_id": "person",
            "_etag": {
                "$oid": "5aa7383a857aba0007504e40"
            },
            "desc": "Persons in my app"
        }
    ],
    "_id": "appdb",
    "_etag": {
        "$oid": "5aa737f7857aba0007504e3f"
    },
    "_size": 1,
    "_total_pages": 1,
    "_returned": 1
}
Clone this wiki locally