v1
latestOpenAPI 3.0.22026-07-17373198641.7 KBusers
v1
Authenticate user (register first if the profile doesn't exist) via Elevate in CLM.
The login algorithm is next:
- Redirect to google auth page https://elmqa.elevateservices.com/services/oauth/authorize with correct client_id, redirect_url, and response_type=token;
- After elevate auth user will be redirected to callback url;
- Pass the access_token from query params to this endpoint.
post/api/v1/users/elevate/
Request body
Example request
{
"access_token": "access_token"
}Response
Example response
{
"access_token": "access_token",
"code": "code",
"id_token": "id_token"
}