Verify a user account
GET/iam/v1/sso_users
Verify that the email address provided to this API corresponds to an existing login account.
This API contains a JSON object in it's response. If the
profile_exists
field in that object is true
, then the
email address is associated with a login account.
If profile_exists
is false
, a login account is not found for this email address.
In that case, a login account must be created for the user before
the user can perform the actions identified by any access policies
assigned to the user's account.
Request
Query Parameters
email stringrequired
The email address used to identify the login account that you want to verify.
Responses
- 200
Successful response.
- application/json
- Schema
- Profile Exists
Schema
- any
{
"profile_exists": true
}
Loading...