Client Configuration
Quadrata SDK Client Configuration
Last updated
Quadrata SDK Client Configuration
Last updated
The Quadrata
component accepts the following props:
sdkConfig
: ( Required ) The object.
accessToken
: ( Required ) The access token obtained from the endpoint. This is a JWT token that grants access to most API calls.
clientConfig
: ( Optional ) The client configuration is an optional set of configuration parameters that are shared by both and onboarding applications. While you can specify the configuration only once, you are also able to override the configuration for each onboarding application. The client configuration parameters are mapped from both, and configuration libraries at @quadrata/kyb-react
and @quadrata/client-react
respectively.
sharedProps
: ( Optional ) The shared props object is an optional set of props that are shared by both and . While you can specify the shared props only once, you are also able to override the shared props for each onboarding application. The shared props are mapped from both and shared libraries at @quadrata/kyb-react
and @quadrata/client-react
respectively. If any event handlers are passed into both sharedProps
and kybProps
or kycProps
, both will be called, but shared props handlers will be called last.
kycProps
: ( Optional ) Specifying props will tell the Quadrata
component to render the . The props are mapped from the library at @quadrata/client-react
.
kybProps
: ( Optional ) Specifying props will tell the Quadrata
component to render the . The props are mapped from the library at @quadrata/kyb-react
.
helperComponent
: ( Required ) The is required as either a child component or as a prop. Its purpose is to provide a way to interact with the Quadrata SDK from within your application. The props passed to your helper will let you know the state of an application and allow you to launch the application from a button click or other. The helper component is mapped from the component Helper
type at @quadrata/sdk/types/components/helper
. There are different helper components for both KYB
and KYC
onboarding applications which contain different props.
The is enabled when you specify a combination of properties in the Quadrata Component.
You can enable the All In One Component in one of the following ways:
Specify sharedProps
and either kybProps
or kycProps
Specify both kybProps
and kycProps