Check For Uniqueness of Customer Email

Request

GET https://backend.net0.com/v1/customers/email-is-uniq

This endpoint allows you to check for the uniqueness of a customer's email address.

curl --location --request GET 'https://backend.net0.com/v1/customers/email-is-uniq' \
--header 'x-api-key: <API_KEY>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "emails": "[email protected]"
}'

Response

The response returns true if the customer's email is unique and returns a 400: Bad Request if not unique.

true