getAutomaticInteractionTracking Configuration
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)
}