Skip to main content
A magic link is a secure, time-bound URL that opens a flow for a specific end user identified by your referenceId. Creating a link is the core Partner API action.

Envelope vs config

Links follow the v2 model: POST /partner/links is discriminated by flow. See Create links.

Lifecycle

Typical statuses include created, opened/in-progress states, and terminal states such as revoked or expired (exact set is reflected on link detail responses). You can:
  • CreatePOST /partner/links
  • GetGET /partner/links/{linkId}
  • List activityGET /partner/links/{linkId}/activity
  • RevokePOST /partner/links/{linkId}/revoke

Response shape

The url points at the flow host configured for that slug. Deliver this URL as-is.

Delivery channels

  • Redirect or deep link in your app
  • Email / SMS / push
  • Native WebView — tune splash/agreement with presentation (see Embed & WebView)

Best practices

  • Reuse the same referenceId for the same person
  • Keep TTLs short enough for your channel (default is typically 60 minutes)
  • Revoke links that should no longer be usable
  • Prefer webhooks over polling for open/complete signals

Next steps

Create links

Request body and examples.

Embed & WebView

Native delivery patterns.