Checks the existence of the user
Checks the existence of the user with given email.
- application/json
Request Body
- email email required
client email address
Responses
- 200
- 400
- 401
- 403
User check successful.
- application/json
- Schema
- Example (from schema)
Schema
- isUserExists url required
Flag indicating whether user with given email already exists or not.
- userId string
Id of the user.
- email email
client email address
- isActive boolean
Default value:
Flag indicating whether the user is active or not, given the user exists in the first place.
{
"isUserExists": true,
"userId": "d290f1ee-6c54-4b01-90e6-d701748f0852",
"email": "john@doe.com",
"isActive": "Flag indicating whether the user is active or not, given the user exists in the first place."
}
Invalid request parameters.
Missing or invalid API key.
Given API key is not allowed to check user with given parameters.
Loading...