POST
/
verify
/
email-magic-link
/
finalize
curl --request POST \
  --url https://api.authsignal.com/v1/client/verify/email-magic-link/finalize \
  --header 'Content-Type: application/json' \
  --data '{
  "challengeId": "<string>"
}'
{
  "isVerified": true,
  "accessToken": "<string>"
}

Body

application/json
challengeId
string
required

The ID obtained when starting the challenge.

Response

200
application/json
OK
isVerified
boolean

True if the email magic link was clicked by the user.

accessToken
string

A new short-term token with scopes to manage authenticators (e.g. add secondary authenticators, remove authenticators, view or regenerate recovery codes). Only present if the challenge succeeded.