Lookalike segments
Demand Gen campaigns can use Lookalike segments to find customers who are similar to your existing customers, allowing you to target new and relevant audiences. You can create Lookalike segments based on specific interactions people have had with your business, like watching a video or visiting a specific page on your website. Lookalike segments are automatically refreshed every 1-2 days based on your available customer data.
To use Lookalike segments, you need to:
- Create at least one
UserList. - Set the expansion_level to
NARROW,BALANCED, orBROADto configure the size of the lookalike segment. Find details on each level in the Help Center. - Select countries to target by setting country_codes in
LookalikeUserListInfoto a list of ISO 3166-1 alpha-2 country codes. - Add a minimum of 100 active matched people across all seed lists.
Start with a UserListOperation:
const userListOperation = {
"userListOperation": {
"create": {
"resourceName": `customers/${customerId}/userLists/${getNextTempId()}`,
"type": "LOOKALIKE",
"name": "Demand Gen Lookalike audience",
"lookalikeUserList": {
"expansionLevel": "BALANCED",
"countryCodes": [
"US", "UM"
],
"seedUserListIds": [
1, 2, 3, 4, 5, 6, 7, 8, 9, ...
]
}
}
}
}
operations.push(userListOperation);