Start passwordless authentication
documentedInitiates a passwordless login by sending a one-time code or magic link to the user.
POST /passwordless/startAuthentication APIno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://{{$auth0_domain}}/passwordless/start" \
-X POST \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"client_id":"{{$client_id}}","connection":"{{$connection}}","email":"{{$email}}","phone_number":"{{$phone_number}}","send":"code","client_secret":"{{$client_secret}}","authParams":{"scope":"{{$scope}}","redirect_uri":"{{$redirect_uri}}","audience":"{{$audience}}"}}'