Authentication
Get Session
Section titled “Get Session”GET /auth/sessionResponse:
{ "authenticated": true, "user": {}}POST /auth/loginRequest body:
{ "email": "string", "password": "string"}Response:
{ "authenticated": true, "user": {}}Logout
Section titled “Logout”POST /auth/logoutResponse:
{ "ok": true}