Verify email with token
POST
https://app.speybooks.com/api/v1/auth/verify-emailConfirm an email address using the token from the verification link. This is a public endpoint and needs no session, so the link works from any device. It marks the address verified and the link used, and is idempotent: an already-verified address still returns success. The link is time-limited; an expired link returns a message to request a new one.
Body parameters
tokenstringrequiredThe 64-character verification token from the email link.
Response
200Email verified successfully, or was already verified.
Show response fields
messagestringHuman-readable result message.
Error codes
400Invalid, expired, or already-used verification token.