Documentation Index
Fetch the complete documentation index at: https://auth0-feat-authentication-api-migration.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
POST /dbconnections/signup
Given a user’s credentials and a connection, this endpoint creates a new user.
This endpoint only works for database connections.
Remarks
- The sample auth0.js script uses the library version 8. If you are using auth0.js version 7, please see this reference guide.
Learn More
- Password Strength in Auth0 Database Connections
- Password Options in Auth0 Database Connections
- Adding Username for Database Connections
- Metadata Overview
Parameters
The
client_id of your client.The user’s email address.
The user’s desired password.
The user’s phone number.
The name of the database configured to your client.
The user’s username. Only valid if the connection requires a username.
The user’s given name(s).
The user’s family name(s).
The user’s full name.
The user’s nickname.
A URI pointing to the user’s picture.
The user metadata to be associated with the user. If set, the field must be an object containing no more than ten properties. Property names can have a maximum of 100 characters, and property values must be strings of no more than 500 characters.
Response
| Status | Description |
|---|---|
| 200 | User successfully created |
| 400 | Bad request, missing or invalid parameters. |
| 409 | Conflict, user already exists. |