I’m trying to create a signup call to the Auth0 API, but I keep getting ‘connection not found’ when I use Postman to submit the call.
This is the URL I am using:
https://{my domain}/dbconnections/signup
And this is the data I’m sending:
{
“client_id”:“{my client id}”,
“email":"john@jk950.com”,
“password”:“test1234”,
“connection”:“con_{16 digit alphanumeric code}”,
“username”:“jk950”,
“given_name”:“John”,
“family_name”:“Doe”,
“name”:“John Doe”,
“nickname”:“Johnny”
}
Returns:
{
“error”: “connection not found”
}