Skip to content

Collect signup email

POST
/_torii/auth/signup/continue/email
curl --request POST \
--url https://your-app.toriiauth.eu/_torii/auth/signup/continue/email \
--header 'Content-Type: application/json' \
--data '{ "token": "example", "email": "[email protected]" }'

Sets the email address on a signup/profile continuation whose account is missing a required email, and emails a verification code to it.

Host
string
Media typeapplication/json

Sets the email address on a signup/profile continuation and emails a verification code.

object
token
required

Continuation token — from the OAuth callback redirect fragment, or the profile_required sign-in response body.

string
email
required

Email address the user wants on the account.

string

OK

Media typeapplication/json

Confirms a 6-digit verification code was emailed to the collected address.

object
emailCodeSent
required
boolean
Examplegenerated
{
"emailCodeSent": true
}