Skip to main content

SSOApiClient

Contains all the endpoints needed to manage sso.

Constructors

new SSOApiClient()

new SSOApiClient(): SSOApiClient

Returns

SSOApiClient

Methods

SignIn()

static SignIn(config?): Promise<SSOSignInType>

This endpoint signs in the user authenticated with the access token.

Parameters

ParameterTypeDescription
config?AxiosRequestConfig<any>

Returns

Promise<SSOSignInType>

Source

services/sso/index.ts:20


SignUp()

static SignUp(data, config?): Promise<SSOSignUpType>

This endpoint creates a new account. Only users with the admin role can register new users.

Parameters

ParameterTypeDescription
dataSSOSignUpParams
config?AxiosRequestConfig<any>

Returns

Promise<SSOSignUpType>

Source

services/sso/index.ts:30