SDK Initialisation

Create an Uqudo SDK instance

import uqudoSdkFactory from "uqudosdk-web";

const uqudoSdk = uqudoSdkFactory.create({
	baseURL?: string;
	accessToken: string;
	nonce?: string;
	assets?: IAssetsArg;
	texts?: ITextsArg;
});
Attribute
Description
Required

baseURL

Api base url provided by uqudo. N.B.: this is only required if you have an on prem installation of the uqudo platform.

false

accessToken

Authorization token

true

nonce

Random string that is useful to make sure the process has been initiated by your application. It should be generated server side and verified server side.

false

assets

List of assets

texts

List of texts

Last updated