Level 2
February 10, 2025
Question
AT: getOffers failed - Error Error: Unable to fulfill request; decisioning engine not ready.
- February 10, 2025
- 1 reply
- 604 views
I am getting an error "decisioning engine not ready" in production. Only preview/QA link in non-prod and production seems to be working fine. What I am doing wrong here? please help.
My code:
adobe.target.getOffers({
request: {
execute: {
mboxes: [{
index: 0,
name: viewName
}]
}
}
}).then(function(response) {
setadobeData(response.execute?.mboxes[0]?.options[0].content);
}).catch(function(error) {
console.log('AT: getOffers failed - Error', error);
}).finally(() => {
adobe.target.triggerView('vulcan_search', {
page: true
});
});I have the react state which stores the response from the Adobe.