I know on client side this can be accomplished with the getOffers method, like so:
adobe.target.getOffers({
request: {
execute: {
pageLoad: {
parameters: {audience targeting object}
}
}
}
}).then(response => adobe.target.applyOffers({ response: response })).catch(error => error stuff);
However, I'm wondering if this is also possible with server side. I'm unable to find anything in the documentation outlining if and how this could be accomplished. Anybody have an ideas?