Auth API

Login with User and Password

POST /auth

Arguments

NameTypeIs RequiredDefault Value
userParameterYes
passwordParameterYes
localeParameterNoRO

Given

  1. A valid username.
  2. A valid password.

When

  1. The route is accessed.

Then

  1. The user is authenticated against the security service.
  2. Returns a WebSecurityAndToken.

Logout

HEAD /auth

Arguments

NameTypeIs RequiredDefault Value
logoutParameterNo
one.erp.rest.auth.tokenCookieNo

Given

  1. A non empty logout parameter.

When

  1. The route is accessed.

Then

  1. The user identified by the token cookie is logged off from the security service.
  2. Returns a WebSecurityAndToken that signifies the user has been logged off.

Get authentication providers

GET /auth or OPTIONS /auth

Parameters

None.

Responses

200 Ok

The operation was successful.

{"providers": [
    {
        "name": "facebook",
        "url": "https://www.facebook.com/v3.1/dialog/oauth?client_id=...&scope=email&state=...&redirect_uri=..."
    },
    {
        "name": "google",
        "url": "https://accounts.google.com/o/oauth2/v2/auth?scope=openid email&access_type=offline&state=...&include_granted_scopes=true&redirect_uri=...&response_type=code&client_id=..."
    },
    {
        "name": "yahoo",
        "url": "https://api.login.yahoo.com/oauth2/request_auth?scope=openid&redirect_uri=...&response_type=code&nonce=xxx&state=...&client_id=..."
    }
]}

POST /auth

Create an entity.

Request

ParameterTypeDescription
set-passwordstringthe new password

Headers

HeaderValueDescription
Content-Typeapplication/x-www-form-urlencoded
X-CSRF-TokenThe value from the one.erp.csrf.token cookie.CSRF protection token.

Response

200 Ok The operation was successful.
401 Unauthorized

The operation is not authorized.

Check if the authentication cookie is set.

403 Forbidden

The operation is forbidden.

Check if the X-CSRF-Token header is set and is correct.

500 Internal Error

All errors except for JSON message deserialization errors.

{
    "detail": "error detail"
}

cURL Example

Set the password for the currently authenticated user

Given the following cURL request:

curl -X POST https://developer.oneerp.ro/auth
   -H "Content-Type: application/x-www-form-urlencoded"
   -d "set-password=1234"