Skip to main content

Get one strategy instance

GET 

/auth/api/login/strategy/:type/instance/:id

Gets one strategy instance by the specified id. If the type is specified, only instances of that type will be looked at

Request

Path Parameters

    id uuidrequired

    The uuid string of an existing strategy instance to get

    type stringrequired

    The strategy type name of which to search for the instance. Defaults to all types

Responses

The requested strategy instance wiht additional data for its use

Schema
    id stringrequired

    {@link StrategyInstance.id}

    name stringnullablerequired

    {@link StrategyInstance.name}

    type stringrequired

    {@link StrategyInstance.type}

    isLoginActive booleanrequired

    {@link StrategyInstance.isLoginActive}

    isSelfRegisterActive booleanrequired

    {@link StrategyInstance.isSelfRegisterActive}

    isSyncActive booleanrequired

    {@link StrategyInstance.isSyncActive}

    doesImplicitRegister booleanrequired

    {@link StrategyInstance.doesImplicitRegister}

    instanceConfig objectrequired

    Instance config with sensitive data removed

    {@link StrategyInstance.instanceConfig}

Loading...