List all strategy instances (of type)
GET/login/strategyInstance
Gets the list of all Strategy instances. If a type is specified, only the instances of that type will be retrieved.
If a non existant strategy type name ist specified, no instances will be returned.
Request
Path Parameters
The strategy type name. If not given gets all instances
Responses
- 200
The list of all strategy instances
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
The unique ID of this strategy instance
An optional human readable name for the strategy.
Can be displayes in a UI etc. but is not necesarrily unique.
Can only contain [A-Za-z0-9_-/+= ]*
The unique string name of the strategy this is an instance of
The strategy of an instance is set on initialization and cannot be changed
If true
, this strategy instance allows login of registered users to retrieve an access token.
Additionally the strategy must have {@link Strategy.canLoginRegister} set to true
If false
, users are not allowed to login using this instance.
If true
users can create an account themselves with the registration token they obtained from this instance.
Additionally the strategy must have {@link Strategy.canLoginRegister} set to true
If false
accounts cannot be created without being admin.
If true
, and {@link Strategy.canSync} is true
,
the sync service can retrieve access tokens for ims users from this strategy instnce.
If false
, no tokens will be handed out for the instance
If true
, a user automatically gets a registration token,
if they tried to login and an account was not found but the user provided credentials
(i.e. sucessfully authenticated with the 3rd party).
Needs {@link Strategy.allowsImplicitSignup} to be true
.
If false
, login fails if no known user was found.
[
{
"id": "12345678-90ab-cdef-fedc-ab0987654321",
"name": "Github-Enterprise-Example",
"type": "userpass",
"isLoginActive": true,
"isSelfRegisterActive": true,
"isSyncActive": false,
"doesImplicitRegister": false
}
]