I have an instance of Raven Db at localhost:8081. I made sure to change raven's config file to allow anonymous access. I created a database named AT. Inside AT I have a collection named Admins. Inside of Admins I have two documents. I'm trying to retrieve some data via Rest using RestClient. I try to hit the db using:
http://localhost:8081/docs/admins/7cb95e9a
(last bit is the id of the document I want).
and
http://localhost:8081/docs/at/admins/7cb95e9a
.
With both I receive a 404. I'm not sure what I'm missing here. Can someone point me in the right direction?