How to set up retail media in a few simple steps
Getting started with Adnuntius is a very easy process and consists of three simple steps. But before you begin you should know the naming in our system:
Site, the site you want ads to be served on.
Ad Unit, The placement on the page that will deliver the ad according to a speciied size.
Creative, the image, video or HTML that will show on the page
Step 1
Create inventory
In order to setup your network you will create your inventory in Adnuntius by setting up sites, and ad units in the system, that can either be done programmatically or via our simpel UI.
Just add a name and site URL, then start adding your ad Units. Either add fixed sizes or a range of sizes that you allow.:
Step 2
Add it to your page
Once the inventory is created you need to generate scripts that will request the Ad units, Either you user our UI or you can code it up your self, get the ad tag id from the system and defined them like so:
<!-- Placement ont he pate where to render the ad -->
<div id="adn-ADTAGID_1>" style="display:none"></div>
<div id="adn-ADTAGID_2>" style="display:none"></div>
<script src="https://cdn.adnuntius.com/adn.js" async></script>
<script>
// Define your ad units
const adUnits = [
{ auId: 'ADTAGID_1' },
{ auId: 'ADTAGID_2' }
]
// Request the ads
window.adn = window.adn || {};
adn.calls = adn.calls || [];
adn.calls.push(function() {
adn.request({ adUnits: adUnits });
});
</script>
There are many more things you can send with the request but this is the simplest to get up and running. Read more here: https://admin.adnuntius.com/adn
Step 3
Start booking ads
Now you have created the infrastructure for your network, you can start to deliver your message to the world. Booking line items are very easy, just add an order, create a line item and assign a budget and a schedule. After that you are ready to upload your creative and start delivering ads the moment you hit save, no waiting around to see if it’s working or not.
Those are the three simple steps to get started with Adnuntius.