Hand a user off to Admin Portal for a setup flow that is too involved to reproduce in a widget.
Mint a short-lived link that starts an Admin Portal session for the token’s organization, scoped to a single setup flow.
GraphQL
| mutation CreateAdminPortalLink($intent: AdminPortalLinkIntent!) { | |
| createAdminPortalLink(intent: $intent) { | |
| expiresAt | |
| intent | |
| link | |
| } | |
| } |
| { | |
| "data": { | |
| "createAdminPortalLink": { | |
| "expiresAt": "2024-01-01T00:00:00.000Z", | |
| "intent": "DomainVerification", | |
| "link": "link_example" | |
| } | |
| } | |
| } |