Verify User Exists
Determines if the user already exists or not
Last updated
Was this helpful?
Determines if the user already exists or not
GET /v3/user-exists
The details below help you form your HTTP requests to this endpoint.
You may provide query parameters to filter the output.
string
N/A
The details below help you understand the responses you could get from this endpoint.
Below are samples of responses, with tabs corresponding to returned status code.
{
"data": {
"userId": "1234-asdf-4321-fdsa",
"exists": true
}
}{
"error": {
"statusCode": 400,
"code": "UserAlreadyExists",
"message": "User already exists with email ex@example.com",
"data": {}
}
}The response's schema is outlined below.
data
object
N/A
data.userId
string
User Id
data.exists
boolean
Determines if the user exists or not
Last updated
Was this helpful?
Was this helpful?