Hi there,
Our use-case
We have a multi tenant B2B application. Right now we are implementing Auth0 as IDP. For each of our B2B customers we will have a separate Auth0 Organisation. We would like to also enable each Company to setup their own password policy on a organisation level for each email/password connection.
Our Problem
It does not seem to be possible to create a new email/password connection through the sdk/management api as each created connection ends up as a “password-less connection” (BTW: we are using the createConnection function from the node api)
const connection = await this.management.createConnection({
name: "random-name",
strategy: "email",
})
The question
How can we programatically setup a new email/password connection for each organisation?
Best,
John