Skip to main content

List all existing auth clients.

GET 

/login/client

Gets all auth clients that exist in the system. Client secrets are not returned.

Needs admin permissions

Request

Responses

List of all auth clients

Schema
  • Array [
  • id stringrequired

    The unique ID of this client

    name stringnullablerequired

    The (human readable) name of the auth client to be able to keep track ofit.

    Doesn't need to be unique, can be null

    redirectUrls string[]required

    The list of valid enpoints to redirect the user back to after authentication has finished.

    The actual url to use is given in the authorize request and must be included in this list. If none is given, the first one from this list will be used

    isValid booleanrequired

    If this is false the client is not valid and no authorization, token, ... requests from it should be answered.

    requiresSecret booleanrequired

    If true requesting a token as this client requires the use of a client secret accoring to the oauth specification.

    If false client secrets can be present and given but are not required

  • ]
Loading...