Unable to create user with verified email [ POST - /api/v2/users ]

I’m trying to create new user with management API, but I have some troubles.
It create my user, but user’s email is not verified even if I set email_verified : true & verify_email : false in request body.

Why email_verified field is overwritten to false ?

Request body:

{ 
  user_id: 1,
  client_id: 'my-client-id',
  connection: 'Username-Password-Authentication',
  email: my@mail.com',
  password: 'mypass',
  **email_verified: true**,
  **verify_email: false**
}

Server response:

{ 
  _id: '423b683346a5a9f23558077015',
  **email_verified: false**,
  email: 'my@mail.com' 
}
1 Like

Did you ever find the answer to this? I’m having the same issue.

1 Like

Hey there!

Sorry for such huge delay in response! We’re doing our best in providing you with best developer support experience out there, but sometimes our bandwidth is not enough comparing to the number of incoming questions.

Wanted to reach out to know if you still require further assistance?

Linking this here - Email verification exception upon creating new user