Skip to content

Verify Email

GET
/api/v1/auth/email/verify/{id}/{hash}

Confirms ownership of the email address via a temporary signed URL. On success, redirects to the configured frontend URL when set, otherwise returns a JSON success response.

id
required
integer

The user id encoded into the link.

Example
16
hash
required
string

The sha1(email) hash encoded into the link.

Example
architecto
object
message
string
Email verified successfully.
{
"message": "Email verified successfully."
}

Invalid link

object
message
string
Verification link is invalid.
{
"message": "Verification link is invalid."
}