Logging in

From DreamFactory
Jump to: navigation, search

Logging in as an Admin

The Admin login API endpoint is api/v2/system/admin/session

Request URL:

POST https://foo.com/api/v2/system/admin/session

Request body:

{
  "email": "[email protected]",
  "password": "secret",
  "remember_me": false
}

cURL:

curl -i -k -3 -X POST "https://foo.com/api/v2/system/admin/session" -d '{ "email" : "[email protected]", "password" : "secret" }' -H "Content-Type: application/json"

Note: Set remember_me=true to get a JWT (token) that can be refreshed forever (until logout) without authentication.

Logging in as a User (Non-Admin)

The non-admin login API endpoint is api/v2/user/session

Request URL:

POST https://foo.com/api/v2/user/session

Request body:

{
  "email": "[email protected]",
  "password": "secret",
  "remember_me": false
}

cURL:

curl -i -k -3 -X POST "https://foo.com/api/v2/user/session" -d '{ "email" : "[email protected]", "password" : "secret" }' -H "Content-Type: application/json"

Note: Set remember_me=true to get a JWT (token) that can be refreshed forever (until logout) without authentication.