UTIQ

If you are using the UTIQ SDK to support privacy-first user identification, you can pass the UTIQ ID to RTBSDK using RTBUserTargeting:

val requestConfiguration = [...] // create request configuration for your ad type
val targeting = RTBUserTargeting(userID = "<USER_ID>", gender = RTBGender.MALE, keywords = listOf("keyword1", "keyword2"), yearOfBirth = 1990)
// yearOfBirth must be a 4-digit number, otherwise it will be ignored

targeting.utiqAdtechpass = "<YOUR_UTIQ_ADTECHPASS>"

requestConfiguration.userTargeting = targeting

//perform ad request

Last updated