Document Storeapi

Document Store — Auth API

JSON-native authentication endpoint for the Clowder platform.

POST /login

Content-Type: application/json

{"username": "demo", "password": "demo123"}

Returns the user record on success, 401 on failure.

Try it

The API accepts any JSON-serialisable value for the password field.

curl -s http://127.0.0.1:9135/login \
  -H 'Content-Type: application/json' \
  -d '{"username":"demo","password":"demo123"}'