getAutomaticInteractionTracking Configuration

Get the current automatic Interaction tracking configuration by calling the following: getAutomaticInteractionTrackingConfiguration(): Promise<MXOResult<MXOAutomaticInteractionTrackingConfiguration>>

Example of usage:

MedalliaMXO.getAutomaticInteractionTrackingConfiguration() .then(mxoResult => { if (mxoResult.value && mxoResult.value.apiName) { // error case console.error(mxoResult.value) } else { // success case console.log("Configuration: ", mxoResult.value) } }) .catch(error => { console.error(error) }) try { const {value} = await MedalliaMXO.getAutomaticInteractionTrackingConfiguration() if (value && value.apiName) { // error case console.error(value) } else { // success case console.log("Configuration: ", value) } } catch (error) { console.error(error) }