DFP Split Users Module#
This module function splits the data based on user IDs.
Configurable Parameters#
Key |
Type |
Description |
Example Value |
Default Value |
---|---|---|---|---|
|
|
The user ID to use if the user ID is not found |
|
|
|
|
Whether to include a generic user ID in the output |
|
|
|
|
Whether to include individual user IDs in the output |
|
|
|
|
List of user IDs to include; others will be excluded |
|
|
|
|
List of user IDs to exclude from the output |
|
|
|
|
Name of the column containing timestamps |
|
|
|
|
Name of the column containing user IDs |
|
|
Example JSON Configuration#
{
"fallback_username": "generic_user",
"include_generic": false,
"include_individual": true,
"only_users": [
"user1",
"user2",
"user3"
],
"skip_users": [
"user4",
"user5"
],
"timestamp_column_name": "timestamp",
"userid_column_name": "username"
}