Tag integration V1

Starting with the live targeting API (decrepated)

Add this tag to you header or directly to the ad placement where you would like to access user segment authorized

Parse the JSON result to get the segments you need and push them into your adserver or SSP using key/value pairs.

Use callback to use the answer with a predefined javascript function (see Tag Response above)

function callback(result){
   console.log(result); => callback here
}
var tag = document.createElement('script');
tag.src = 'https://partner-api.sddan.com/api/v1/public/user/partner/[PARTNER_ID]/segment?gdpr=[tcf_v2_gdpr_applies]&gdpr_consent=[tcf_v2_tcstring]&callback=callback';
tag.async = true;
tag.setAttribute('referrerpolicy','unsafe-url');
document.getElementsByTagName('body')[0].appendChild(tag);

(mandatory) [PARTNER_ID] : numerical value - is given by your contact at Sirdata during the API Access process

(mandatory for EEA/UK users) gdpr : TCF V2 gdpr_applies parameter

(mandatory for EEA/UK users) gdpr_consent : TCF V2 TC String

(optional) callback : callback function name can be change

Last updated

Was this helpful?