adPluga

Events

Events

Every served ad emits up to three events: impression, click and conversion. Read them from /v1/integration/events, which is how you consume them from your own system today.

Recent events

Fetch the latest 100 events for debugging. Filters by property and by event type.

curl 'https://api.adpluga.com/v1/integration/events?limit=100' \
  -H 'Authorization: Bearer <access_token>'

Event shape

Each item carries the ad, campaign, slot and property it belongs to, where the decision came from, and whether the event passed the invalid-traffic filter.

{
  "id": "9677a2b6-6ed8-4b3c-88f1-4e29c7a78e5f",
  "kind": "impression",
  "ts": "2026-09-21T14:44:47Z",
  "ad_id": "c9fa983c-c972-4922-ab42-d8795c947d69",
  "campaign_id": "18b9de08-7a02-42c4-88b8-8a2c20095d49",
  "slot_id": "f8a95bc1-e48b-4f43-96ad-2902f327d2fa",
  "property_id": "d788f8aa-22c5-46e2-b457-8aa50600137c",
  "source": "direto",
  "is_test": true,
  "valid": true,
  "reason": "valid"
}

Outbound webhooks

We do not deliver events to your endpoint yet. Until then, poll /v1/integration/events with the cursor of the last event you processed, and /v1/integration/status for the property summary — last impression, last click, and whether the key in use is test or live.