Email sent although verify_email field is false

Hi @ron.p,

Thank you for your response and update.

I understand that you are still encountering issues with creating users without sending the verification email.

The correct payload should include the connection, email, password, and verify_email properties in the request. See below:

curl --location --request POST 'https://YOUR_DOMAIN.REGION.auth0.com/api/v2/users' \
--header 'Authorization: Bearer YOUR_TOKEN' \
--header 'Content-Type: application/json' \
--data-raw '{
  "email": "someuser@example.com",
  "connection": "Username-Password-Authentication",
  "password": "secret",
  "verify_email":  false
}'

I have tested this with both verify_email set to true and false and managed to get the expected outcomes, namely sending or not sending the verification email.

Please let me know how this works for you.

Thank you!