Verify Email
GET /api/v1/auth/email/verify/{id}/{hash}
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.
Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” id
required
integer
The user id encoded into the link.
Example
16 hash
required
string
The sha1(email) hash encoded into the link.
Example
architectoResponses
Section titled “ Responses ”object
message
string
Email verified successfully.{ "message": "Email verified successfully."}Invalid link
object
message
string
Verification link is invalid.{ "message": "Verification link is invalid."}