Create a wallet link
Deliver the URL
Print it in the terminal, put it in an email, drop it in a chat. The user opens it in any browser and gets the full wallet: add a card, see their cards, approve a payment.Link semantics
A link belongs to one user and expires after 15 minutes by default (expires_in accepts 60 to 86400 seconds). It can be opened up to 20 times within that window, so a user can tap it again without asking for a new one. Link previews and unfurl bots never consume an open; the page only exchanges the link when a real browser loads it.
When the user needs the wallet again later, create a fresh link. They are cheap and there’s no limit on how many you create.
Webhooks you will receive
wallet_link.openedthe first time the link is openedconnected_card.updatedwhen the user adds a cardtransaction.*events when payments happen
When it fails
An expired link shows the user an expired screen. Every other refusal shows one generic screen asking them to request a fresh link. Your handling is one code path: create a new link and send it.Sandbox behavior
With sandbox credentials, the connect code is always111111 and the test card is 4242 4242 4242 4242 with any future expiry and any CVC. No real money moves.
Next: Connect users