Integration guide

Web offerwall

Embed the wall with iframe, link, or JavaScript.

Web offerwall

Replace {PLACEMENT_ID}, {PUBLIC_KEY}, and {user_id} with your values. user_id must be unique per end user (UUID recommended). The public key is safe to embed in the iframe URL.

iframe

html
<iframe
  src="https://prismads.co/wall/{PLACEMENT_ID}?user_id={user_id}&api_key={PUBLIC_KEY}"
  title="Offerwall"
  width="100%"
  height="720"
  frameborder="0"
  allow="clipboard-write"
></iframe>
html
<a href="https://prismads.co/wall/{PLACEMENT_ID}?user_id={user_id}&api_key={PUBLIC_KEY}">
  Open offerwall
</a>

JavaScript

js
const url = `https://prismads.co/wall/${placementId}?user_id=${encodeURIComponent(userId)}&api_key=${encodeURIComponent(publicKey)}`;
window.open(url, '_blank');

Next step

Configure S2S postbacks so rewards credit on your server.