Logging in
From DreamFactory
MikeRentoul3 (Talk | contribs) (Created page with "My name is Mike and I аm studying Optometry ɑnd Anthropology and Sociology аt Terme Di Stigliano / Italy.<br><br>Ϻy web site :: [https://www.facebook.com/eshopcardcodesgen...") |
(Created page with "### Tutorial ### Log in as an Admin The Admin login API is api/v2/system/admin/session #### API Endpoint <pre>POST https://your-url/api/v2/system/admin/session</pre> <sour...") |
||
Line 1: | Line 1: | ||
− | + | ### Tutorial | |
+ | |||
+ | ### Log in as an Admin | ||
+ | |||
+ | The Admin login API is api/v2/system/admin/session | ||
+ | |||
+ | #### API Endpoint | ||
+ | |||
+ | <pre>POST https://your-url/api/v2/system/admin/session</pre> | ||
+ | <source lang="JavaScript"> | ||
+ | { | ||
+ | "email": "user_email", | ||
+ | "password": "password", | ||
+ | "remember_me": bool | ||
+ | } | ||
+ | </source> | ||
+ | |||
+ | #### Example - Logging in as an Admin | ||
+ | |||
+ | <pre>POST https://your-url/api/v2/system/admin/session</pre> | ||
+ | <source lang="JavaScript"> | ||
+ | { | ||
+ | "email": "jdoe@example.com", | ||
+ | "password": "secret", | ||
+ | "remember_me": false | ||
+ | } | ||
+ | </source> | ||
+ | |||
+ | 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 | ||
+ | |||
+ | <pre>POST https://your-url/api/v2/user/session</pre> | ||
+ | <source lang="JavaScript"> | ||
+ | { | ||
+ | "email": "user_email", | ||
+ | "password": "password", | ||
+ | "remember_me": bool | ||
+ | } | ||
+ | </source> | ||
+ | |||
+ | #### Example - Logging in as an User (non-admin) | ||
+ | |||
+ | <pre>POST https://your-url/api/v2/user/session</pre> | ||
+ | <source lang="JavaScript"> | ||
+ | { | ||
+ | "email": "jdoe@example.com", | ||
+ | "password": "secret", | ||
+ | "remember_me": false | ||
+ | } | ||
+ | </source> | ||
+ | |||
+ | Note: Set remember_me flag to 'true' in order to get a JWT (token) that can be refreshed forever (until logout) without authentication. |
Revision as of 17:52, 12 October 2015
- 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": "jdoe@example.com", "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": "jdoe@example.com", "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.