v1

latestOpenAPI 3.0.22026-07-17373198641.7 KB
users
v1

Authenticate user (register first if the profile doesn't exist) via Elevate in CLM.

The login algorithm is next:

  1. Redirect to google auth page https://elmqa.elevateservices.com/services/oauth/authorize with correct client_id, redirect_url, and response_type=token;
  2. After elevate auth user will be redirected to callback url;
  3. Pass the access_token from query params to this endpoint.
post/api/v1/users/elevate/

Request body

access_tokenstring required

Example request

{
  "access_token": "access_token"
}

Response

access_tokenstring
codestring
id_tokenstring

Example response

{
  "access_token": "access_token",
  "code": "code",
  "id_token": "id_token"
}