Hi @sandeshi, It looks like a JSON object, so assuming 'utag_data' is your data layer when you assign utag_data.dle = utag.globals.dle.enrichments['d_366c12577747284e89d'] to refere it - example: console.log(utag_data.dle.page.url) will return "sampleurl" or if your data layer is "utag.globals.dle.enrichments" then you can access it using example: console.log(utag.globals.dle.enrichments.d_366c12577747284e89d.page.url) will return : "sampleurl" or you can set a pointer to the dle object, example dleobt = utag.globals.dle.enrichments.d_366c12577747284e89d and then access it. console.log(dleobj.page.url) will return "sampleurl" Above solution is based on my understanding, please let me know if it helps or need more information Thanks!
... View more