Pages and Endpoints
Tenant-specific version
By default this page will display generic urls for hosted pages and endpoints. To view tenant-specific version of urls,
- Either navigate to
Tenant
section and click theTenant URLs
at the top-right; or go toTenant
thenDomains
tab and click domain-specificTenant URLs
- Append a
domain
query param at the end of this page URL with value as tenant domain i.e.?domain=your-domain.com

Hosted user pages
Hosted tenant pages for users.
Hosted Page | URL |
---|---|
User Registration | https://{domain}/user/register |
User Login | https://{domain}/user/login |
User Profile | https://{domain}/user/settings/profile |
User Change Password | https://{domain}user/settings/password/ |
User Active Sessions | https://{domain}/user/user/settings/sessions |
User Authorized Apps | https://{domain}/user/user/settings/apps |
User Password Reset Request | https://{domain}/user/password/reset-start |
important
Some of the hosted pages require user authentication so if there is no active login user will be redirected to login page.
OpenID/OAuth Endpoints
OAuth 2.0 and OpenID Connect endpoints for tenant.
Endpoint | URL |
---|---|
OpenID Connect Discovery | https://{domain}/oauth2/.well-known/openid-configuration |
JSON Web Key Set (JWKS) | https://{domain}/oauth2/.well-known/jwks.json |
Userinfo | https://{domain}/oauth2/userinfo |
Authorize | https://{domain}/oauth2/authorize |
Token | https://{domain}/oauth2/token |
Token Introspection | https://{domain}/oauth2/token/introspect |
Token Revocation | https://{domain}/oauth2/token/revoke |
Device | https://{domain}/oauth2/device |
Device User Code | https://{domain}/oauth2/device/user |
Logout | https://{domain}/oauth2/logout |
important
Some of the tenant endpoints require client or token authentication, so if authentication fails HTTP status 401
will be raised.