external_id. This lets you look up status later by your own ID instead of storing ours.
Response
If you pass both
external_id and region, the person is still limited to one account per region, but can connect to new regions instantly without redoing the liveness check.Reusing the same external_id
Calling verification/create more than once with the same external_id is not an error. Each call returns its own verification_url: independent, both valid. Nothing is overwritten on our side.
First call
Second call (same external_id)
external_id identifies your user, not a single verification attempt. You might legitimately want multiple URLs for the same user, e.g. one for email delivery, one for a fallback SMS, and we don’t want to block that.
How status resolves a reused external_id
verification/status answers at the user level, not the session level. It returns one boolean:
-
If any session for that
external_idhas completed verification,verification_completeistrue. -
If all are still in-flight,
verification_completeisfalse(200, safe to poll). -
If no session has ever been created for that
external_id, you get a404withfailure_code: DOES_NOT_EXIST: