Skip to content
Torii docs

Get continuation state

GET
/_torii/auth/signup/continue
curl --request GET \
--url 'https://your-app.torii.so/_torii/auth/signup/continue?token=example'

Returns the pending legal documents and provider context for a continuation token. Each call refreshes the intent’s idle TTL.

token
required
string
Host
string

OK

Media type application/json

Current state of a pre-contract OAuth signup awaiting legal consent.

object
email

Email captured from the OAuth provider, if any.

string | null
oauthProviderLabel
required

Display label of the OAuth provider (e.g. “Google”, “MitID”).

string
legalSettings
required

Environment’s legal-consent settings — the SDK uses this to render the checkbox + URLs.

object
requireConsent
required

When true, the SDK signup form shows a checkbox the user must tick.

boolean
termsOfServiceUrl

Public URL to the Terms of Service, or null.

string | null
privacyPolicyUrl

Public URL to the Privacy Policy, or null.

string | null
expiresAt
required

When this continuation expires if no further activity occurs (ISO-8601 UTC).

string format: date-time
Example generated
{
"email": "example",
"oauthProviderLabel": "example",
"legalSettings": {
"requireConsent": true,
"termsOfServiceUrl": "example",
"privacyPolicyUrl": "example"
},
"expiresAt": "2026-04-15T12:00:00Z"
}