Skip to content

Commit

Permalink
Criteo Bidder: Add pubid/uid fields (#3714)
Browse files Browse the repository at this point in the history
  • Loading branch information
AntoxaAntoxic authored Feb 5, 2025
1 parent 598c2c6 commit 3c920b5
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
10 changes: 10 additions & 0 deletions src/main/resources/static/bidder-params/criteo.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,16 @@
"type": "integer",
"description": "Impression's network ID, preferred.",
"minimum": 0
},
"pubid": {
"type": "string",
"description": "Impression's publisher ID.",
"minLength": 1
},
"uid": {
"type": "integer",
"description": "Impression's ad unit id.",
"minimum": 0
}
},
"anyOf": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
},
"ext": {
"criteo": {
"zoneId": 1
"zoneId": 1,
"pubid": "pubid",
"uid": 2
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@
"ext": {
"tid": "${json-unit.any-string}",
"bidder": {
"zoneId": 1
"zoneId": 1,
"pubid": "pubid",
"uid": 2
}
}
}
Expand Down

0 comments on commit 3c920b5

Please sign in to comment.