Hi @vignesh.ramesh,
You can add additional sign up fields to the Universal Login form (example) so that end-users can provide this info when they sign up, but you can’t add fields to the form used to manually create users.
You can either edit the name field from the dashboard after creating the user:
Or you can use the Management API to create users with the name property using the /users/post_users
endpoint.
In order to test out the Management API, you will need to set an API token in the top left corner of the Management API docs
You can get the token from your Auth0 dashboard by going to APIs, clicking on “Auth0 Management API” and then going to the API Explorer tab. Copy the token.
Once the API Token is set, you can try out the create users endpoint.
Example payload:
{
"email": "john.doe@gmail.com",
"user_metadata": {},
"blocked": false,
"email_verified": false,
"app_metadata": {},
"given_name": "John",
"family_name": "Doe",
"name": "John Doe",
"nickname": "Johnny",
"connection": "Username-Password-Authentication",
"password": "secretpassword123!@#",
"verify_email": false
}