From the docs of Management APIv2 and using Postman, I’m trying to create a user:
{
"connection": "",
"email": "",
"username": "",
"password": "",
"phone_number": ""
}
But I get:
statusCode: 400
error: "Bad Request"
message: "Payload validation error: 'Invalid property phone_number'."
errorCode: "invalid_body"
How do you add phone_number
in Auth0 database (not in user_metadata)? Or why is phone_number
present in Postman Auth0 request body (outside user_metadata)?
Or is it only when passwordless service is activated?