Skip to main content

Class: SSOApiClient

services/sso.SSOApiClient

Contains all the endpoints needed to manage sso.

Constructors

constructor

new SSOApiClient(): SSOApiClient

Returns

SSOApiClient

Methods

SignIn

SignIn(config?): Promise<SSOSignInType>

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

Parameters

NameType
config?AxiosRequestConfig<any>

Returns

Promise<SSOSignInType>

Defined in

services/sso/index.ts:20


SignUp

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

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

Parameters

NameType
dataSSOSignUpParams
config?AxiosRequestConfig<any>

Returns

Promise<SSOSignUpType>

Defined in

services/sso/index.ts:30