Skip to content

Get environment-invitation details by token

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

Returns the invited email and app name for rendering the invitation sign-up surface. No authentication required.

token
required
string
Host
string

OK

Media type application/json
object
email
required
string
environmentName
required
string
expired
required
boolean
accepted
required
boolean
revoked
required
boolean
Example generated
{
"email": "example",
"environmentName": "example",
"expired": true,
"accepted": true,
"revoked": true
}