API Reference//
- Provide an access_token for the user
Get All Users
Create a User
Get a User
Delete a User
Update a User
Log out the current user
Invalidate all active user sessions
Provide an access_token f...
Provides an access_token for the email or the userId provided in the LoginCommand.
The accepted couples are:
[email, password]
[email, private_key]
[userId, private_key]
A LoginCommand object
- https://uberall.com/apihttps://uberall.com/api/users/login
- Mock Serverhttps://docs.uberall.com/_mock/apis/swagger/users/login
curl -i -X POST \
https://uberall.com/api/users/login \
-H 'Content-Type: application/json' \
-d '{
"userId": 0,
"email": "string",
"password": "string",
"private_key": "access_token"
}'User successfully authenticated
Enum:"SUCCESS""PENDING""QUOTA_LIMIT_EXCEED""NOT_AUTHORIZED""FORBIDDEN""BAD_ACCESS_TOKEN""BAD_PRIVATE_KEY""BAD_PUBLIC_KEY""MISSING_PARAMETER""INVALID_PARAMETER"
Response
{
"status": "SUCCESS",
"message": "string",
"warnings": [
"string"
],
"response": {
"access_token": "string"
}
}