vyt token on the URL. GET /v3/confirmations/{token} exchanges that token for the authoritative result. This is the check that matters — run it on your backend with your secret key before you grant access. The vyc value on the URL is only a UI hint.
Path parameter
The
vyt confirmation token the user returned with after verifying. Read it
off the URL with vyget().Response
Authoritative result —
true only if the person passed the
liveness and uniqueness checks and the
confirmation isn’t locked. Gate access on this field.The
external_id attached to the session at initialize, if any.A reference to the verification this confirmation belongs to.
Response
Example
Lock a confirmation (optional)
For one-time flows where the user won’t return — a single collection form, a one-time gate, where you’re not tracking identities and don’t want a second submission — lock the confirmation once you’ve accepted it. The token then becomes invalid for that verification: a subsequentGET /v3/confirmations/{token} returns verified: false.
true once the confirmation is locked. A locked confirmation can’t be confirmed again.Response
Locking is single-use enforcement at the confirmation level. To bar the same
human across devices and accounts, rely on
uniqueness instead.