RTB House

Datafly Signal delivers conversion events to RTB House server-to-server for deep learning-powered retargeting, campaign attribution, and personalised ad delivery optimisation.

⚠️

This integration is currently in beta. Configuration and behaviour may change.

Prerequisites

Before configuring RTB House in Signal, you need an RTB House account and credentials provided by your RTB House account manager.

Set Up an RTB House Account

  1. Contact RTB House to set up an advertiser account, or reach out to your existing RTB House account manager.
  2. Complete the onboarding process, which includes providing your website URL and retargeting requirements.
  3. Your account manager will provision your account and provide access to the RTB House panel.

RTB House operates on a managed service model. Account setup and configuration is handled in partnership with your RTB House account manager.

Get Your Tag ID and Region

  1. Ask your RTB House account manager for your Tag ID and assigned Region.
  2. The Tag ID is a unique identifier for your RTB House tracking tag (e.g. abcde12345).
  3. The Region determines which RTB House API endpoint receives your events. Common values include eu, us, and apac.
⚠️

The Tag ID and region are assigned by RTB House. Do not use values from other integrations or guess the region — using incorrect values will result in events being dropped.

Configure in Signal

Now that you have your Tag ID and region from your RTB House account manager, configure the integration in Signal.

Configuration Fields

FieldRequiredDescription
tag_idYesYour RTB House tag ID. Provided by your RTB House account manager.
regionYesThe RTB House API region for your account (e.g. eu, us, apac). Provided by your account manager.

Management UI Setup

  1. Go to Integrations > Add Integration > RTB House.
  2. Enter your tag_id and region.
  3. Select consent categories (typically advertising).
  4. Click Save.

Management API Setup

curl -X POST http://localhost:8084/v1/admin/integrations \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "source_id": "src_abc123",
    "vendor": "rtb_house",
    "name": "RTB House Production",
    "enabled": true,
    "config": {
      "tag_id": "abcde12345",
      "region": "eu"
    },
    "consent_categories": ["advertising"]
  }'

Event Mapping

Datafly EventRTB House EventNotes
page (page view)home / visitPage type determined by URL context
Product ViewedofferRequires product identifiers
Product AddedbasketaddIncludes product details
Order CompletedconversionRequires value, currency, product list
Products SearchedsearchIncludes search_string
Product List ViewedcategoryCategory page view
Custom eventsPassed throughSent as custom event name

Testing Your Integration

Step 1: Send a Test Event

  1. Trigger a product view or purchase event on your website.
  2. Check the Signal event debugger in the Management UI to confirm the event was captured and delivered.

Step 2: Verify with Your Account Manager

  1. Contact your RTB House account manager to confirm events are being received.
  2. RTB House does not provide a self-service event viewer — your account manager can verify delivery on their side.

Step 3: Validate Retargeting

  1. After events are flowing, your RTB House account manager will confirm that retargeting campaigns can use the event data.
  2. Review campaign performance reports provided by your account manager.

Troubleshooting

ProblemSolution
Events not being received by RTB HouseVerify the tag_id and region are correct. Contact your account manager to confirm.
Invalid region errorEnsure you are using the exact region value provided by RTB House (e.g. eu, not europe).
Product events not mapping correctlyEnsure product identifiers in your Datafly events match those in your RTB House product feed.
Events delayed or missingCheck Signal’s delivery status. If delivery is confirmed, contact your RTB House account manager — the issue may be on their side.

Visit RTB House for more information. For API documentation and integration support, contact your RTB House account manager directly.