RTB House Sync
What is RTB House?
RTB House is a global advertising technology company that provides AI-driven solutions for personalized retargeting and marketing campaigns. Its platform uses deep learning algorithms to analyze user behavior and deliver customized ads across various devices and channels. RTB House works with e-commerce brands and digital marketers to improve audience targeting, optimize performance, and increase conversions. The company's infrastructure supports data localization with regional data center options to comply with privacy and data protection requirements.
Product Type: Advertising
Integration Type: ID Sync
Capabilities
- Sends MetaRouter’s
ajsid
to RTB House via a POST request for identity synchronization. - Enables personalized retargeting by syncing users to RTB House’s platform.
- Supports regional data routing through configurable data center endpoints.
- Tracks sync status with a locally stored value used to determine re-sync timing.
Considerations
- Data center selection is required and should align with the user’s geographic region (AMS, US, or Asia).
- Re-syncs are triggered when the stored identifier expires or becomes unavailable.
Sync Details
-
IDs:
ajsid
– A unique MetaRouter session identifier used to match users with RTB House’s system.
-
Description:
- The sync sends the MetaRouter
ajsid
to RTB House using a POST request to a region-specific endpoint. - The data center (e.g.,
us
,ams
,asia
) and client tagging hash are required for routing and identity mapping. - A sync "fired" marker is stored in first-party storage with a defined lifetime (e.g., 30 days).
- Values are refreshed when expired or when no valid ID is present.
- Sync results are appended to the server-side event payload for retargeting and audience matching.
- The sync sends the MetaRouter
-
Server-side Event Payload:
Upon completion of all vendor's sync, the server-side events will incorporate all resolved identifiers as described above. The following object will be appended to thecontext.providers
property within the event's JSON payload.{ "rtbHouse": { "fired": "human-readable date when sync was fired" } }
-
Cookie Name:
- Cookie:
_meta_rtbHouse_fired
- IndexedDB:
[your storage prefix]_rtbHouse_fired
- For a general guide on ID Sync validation, see here.
- Cookie:
Sync Setup Guide
1. Gather Credentials
To configure the RTB House sync, you will need the following details from your RTB House account manager or implementation team:
- Tagging Hash – A unique identifier assigned to your RTB House account.
- Data Center – Region where your data should be routed (
us
,ams
, orasia
).
2. Add a RTB House Sync in MetaRouter
To trigger the RTB House identity match using the MetaRouter ajsid
, you must add a RTB House sync.
- From the Pipelines page, find the pipeline associated with the web property you’d like to add a sync to. Hover over the three dot dropdown and select “Build AJS File.”
- In the Identity Syncs section, select the RTB House sync.
- Fill out the following fields:
- Data Center – Use a string:
"us"
,"ams"
, or"asia"
based on your target region. - Tagging Hash – Paste your RTB House tagging hash as a quoted string (e.g.,
"Xu0m620aed1PAR1VZ7Pf"
). - Lifetime (in days) – Enter a numeric value indicating how long the sync should be retained (e.g.,
30
).
- Data Center – Use a string:
- Scroll down and click the Save and Build File button.
- Deploy your AJS file to propagate changes to your web property.
Updated 1 day ago