Introspect
Introspect returns the current user’s principle_id, user_id and a list of roles, permissions, and enabled features.
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
This API uses OAuth2 with the Client Credential flow. Client Credentials must be sent in the BODY, not the headers. For an example of how to implement this, refer to the c1TokenSource.Token() function.
Response
IntrospectResponse contains information about the current user who is authenticated.
IntrospectResponse contains information about the current user who is authenticated.
The OAuth client_id of the device client registered for this token. Present only on tokens issued by the device registration grant; the client reads it once and presents it on the subsequent token exchange. Empty for all other tokens.
The list of feature flags enabled for the tenant the logged in user belongs to.
The list of permissions that the current logged in user has.
The principleID of the current logged in user.
The list of roles that the current logged in user has.
The tenantID from the authenticated caller's passport.
The userID of the current logged in user.