Deeply Verify User Exists

Verify if a user already exists via email, address, or phone number

POST /v3/users/exists

Request

The details below help you form your HTTP requests to this endpoint.

Body

You must provide a JSON payload.

Name
Type
Required
Description

email

string

user email

address

object

N/A

address.street1

string

The first line of the address

address.street2

string

The second line of the address

address.city

string

The city of the address

address.region

string

The ISO 3166-2 state/province code of the address

address.postalCode

string

The postal code of the address

address.country

string

The ISO 3166-2 / 3166-3 country code of the address

phone

phone

user phone

Response

The details below help you understand the responses you could get from this endpoint.

Samples

Below are samples of responses, with tabs corresponding to returned status code.

{
    "data": {}
}

Schema

The response's schema is outlined below.

Name
Type
Required
Description

data

object

N/A

data.addressExists

boolean

N/A

data.emailExists

boolean

N/A

data.phoneExists

boolean

N/A

Last updated

Was this helpful?