"POST /openapi/v1/users/info" method
Getting a personal link to the user portal.
Request
Header:
- Authorization – the company's API token.
Body:
- email – a string – the user's email address.
Example of the body of a request:
{
email: 'some@email.com'
}
|
Response
link – a string – the personal link to the user portal.
Example of a response:
{
link: https://domain.com/verify/a69d1294ad5ec5d286b7e4a8d9203a21
}
|
Possible errors
- 400 – common-validation – There was a request validation error.
- 401 - common-unauthorized - There was an authentication error.
- 404 – user-not-found – A user with the indicated email address was not found.
- 422:
- education-not-started – The user has not started training.
- processing-education – Training has begun; the training plan is being generated.
- 429 – too-many-requests – There were too many requests.
To the top