Create a vault session
string
Omit this for a new user. The session is open: Agentcard creates the user during enrollment and returns their id. If you pass an id you already have, the session is connected: opening the link sends a one-time code to the contact on that account, and verifying it signs the user in.
number
Lifetime in seconds (60 to 172,800). Defaults to 24 hours. Each session is single use.
$ORG_TOKEN must be a client-credentials access token. API keys are rejected with 400 client_credentials_required. Open sessions are limited to 200 per organization per rolling 24 hours.
Send the link
Deliverurl to the user through the channel you already use with them. Each link is for a single enrollment, so send it to one person and associate the resulting user_id with whoever you sent it to.
What the user sees: a page where they enter their card details and tap save. Face ID creates their passkey, and the card is encrypted on their device before it’s stored. No account to create first, and no code to enter.
Returning users tap “Unlock with your passkey” instead of entering a card. The passkey signs them in, and the session links to their existing account.
Learn when the card is stored
You have two options.Option A: webhooks (recommended)
vault.session_linked
vault.session_linked. It still sends vault.card_stored.
Option B: poll the session
For a CLI or an agent with no public endpoint, read the session until it finishes. Use theid from the create response, never the token inside url.
Honor
poll_interval and you will never hit the read budget (40 reads a minute per session).
Check for an existing card
Before sending a returning user through enrollment again, check what they already have:id, brand, last4, expiry. Never card data. Pass a card’s id as cardId on a checkout when the user should pay with a specific card.
Test mode
A sandbox token creates a sandbox session. The Face ID ceremony is real in the browser, and the user it creates is a sandbox user. On a connected session no code is delivered;111111 verifies. Store a test card (4242 4242 4242 4242) so the purchase flow works against test-mode storefronts.