Skip to main content

List all users in the system

GET 

/auth/api/login/user

Authorization: apiKey

name: bearertype: apiKeyscheme: bearerbearerFormat: JWTdescription: Access token provided after running the oauth flow (and if needed registering/linking)

Gets a list of all users in the system.

Needs admin permissions.

Request

Responses

List of all users in the system

Schema
  • Array [
  • id stringrequired

    The unique ID of this login user

    neo4jId stringnullablerequired

    The id of this user in the neo4j database.

    If null after initialization, there was an error. Must be unique as relation to GropiusUser is 1:1.

    username stringrequired

    The plain text username of the user. Must be kept in sync with username in backend.

    Currently has no use outside the userpass strategy

    revokeTokensBefore date-timerequired

    All tokens (INCLUDING access tokens) issued to this user before this date are no longer valid.

    Used to 'emergency'-Revoke tokens

  • ]
curl -L -X GET 'https://ccims.github.io/auth/api/login/user' \
-H 'Accept: application/json'
Request Collapse all
Auth
ResponseClear

Click the Send API Request button above and see the response here!