Logging in
From DreamFactory
- Tutorial
- Log in as an Admin
The Admin login API is api/v2/system/admin/session
- API Endpoint
POST https://your-url/api/v2/system/admin/session
{ "email": "user_email", "password": "password", "remember_me": bool }
- Example - Logging in as an Admin
POST https://your-url/api/v2/system/admin/session
{ "email": "[email protected]", "password": "secret", "remember_me": false }
Note: Set remember_me flag to 'true' in order to get a JWT (token) that can be refreshed forever (until logout) without authentication.
- Log in as an User (non-admin)
The User login API is api/v2/user/session
- API Endpoint
POST https://your-url/api/v2/user/session
{ "email": "user_email", "password": "password", "remember_me": bool }
- Example - Logging in as an User (non-admin)
POST https://your-url/api/v2/user/session
{ "email": "[email protected]", "password": "secret", "remember_me": false }
Note: Set remember_me flag to 'true' in order to get a JWT (token) that can be refreshed forever (until logout) without authentication.