openapi: 3.0.0 info: title: Auth0 Authentication actions DbConnections API description: Auth0 Authentication API. Endpoints for authentication and authorization using OpenID Connect, OAuth 2.0, SAML, WS-Federation, and Passwordless flows. version: 1.0.0 servers: - url: '{auth0_domain}' description: The Authentication API is served over HTTPS. variables: auth0_domain: description: Auth0 domain default: https://demo.us.auth0.com tags: - name: DbConnections paths: /dbconnections/signup: post: operationId: dbconnections_signup tags: - DbConnections summary: Auth0 Signup with User's Credentials description: Given a user's credentials, and a connection, this endpoint will create a new user using active authentication. This endpoint only works for database connections. requestBody: required: true content: application/json: schema: type: object properties: client_id: type: string description: The client_id of your client. email: type: string description: The user's email address. password: type: string description: The user's desired password. connection: type: string description: The name of the database configured to your client. username: type: string description: The user's username. Only valid if the connection requires a username. given_name: type: string description: The user's given name(s). family_name: type: string description: The user's family name(s). name: type: string description: The user's full name. nickname: type: string description: The user's nickname. picture: type: string description: A URI pointing to the user's picture. user_metadata: type: object description: 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. responses: '200': description: Successful response '400': $ref: '#/components/responses/BadRequest' '401': $ref: '#/components/responses/Unauthorized' '403': $ref: '#/components/responses/Forbidden' '404': $ref: '#/components/responses/NotFound' '405': $ref: '#/components/responses/MethodNotAllowed' '429': $ref: '#/components/responses/TooManyRequests' '500': $ref: '#/components/responses/InternalServerError' '501': $ref: '#/components/responses/NotImplemented' '503': $ref: '#/components/responses/ServiceUnavailable' components: responses: NotImplemented: description: Not Implemented content: application/json: schema: type: object properties: error: type: string error_description: type: string ServiceUnavailable: description: Service Unavailable content: application/json: schema: type: object properties: error: type: string error_description: type: string InternalServerError: description: Internal Server Error Unauthorized: description: Unauthorized content: application/json: schema: type: object properties: error: type: string error_description: type: string TooManyRequests: description: Too Many Requests content: application/json: schema: type: object properties: error: type: string error_description: type: string BadRequest: description: Bad Request content: application/json: schema: type: object properties: error: type: string error_description: type: string NotFound: description: Not Found content: application/json: schema: type: object properties: error: type: string error_description: type: string Forbidden: description: Forbidden content: application/json: schema: type: object properties: error: type: string error_description: type: string MethodNotAllowed: description: Method Not Allowed content: application/json: schema: type: object properties: error: type: string error_description: type: string