Bid Response Ext Object¶
Note
Fields marked with an asterisk (*) are optional.
Value |
Type |
Description |
---|---|---|
protocol |
string |
The latest BidSwitch protocol version this bid response is compliant
with, for example |
true_price_opt_out* |
boolean |
Prevents True Price from processing the response. If you have True Price enabled for trading, this allows you to bypass it for certain responses or for comparative testing of its efficiency. The following are the valid options:
|
igbid* |
array of objects |
An array of Interest group bid objects. The length of the array can be either
1+ (for yes-bid) or 0 (for no-bid). Can be present even if |
Interest Group Bids Object¶
Value |
Type |
Description |
---|---|---|
id* |
string |
Refers to the adslot being bid on, the ID should match original request
|
igbuyer |
array of objects |
Contains data specific to each buyer participating in this interest group impression opportunity |
Interest Group Buyer Object¶
Value |
Type |
Description |
---|---|---|
origin |
string |
The origin domain of the owner of the interest group. It should match the
origins where the |
buyerdata* |
json |
Buyer-specific signals used by the buyer’s interest group bidding function. Can
be left empty if |
{
"id": "1234567890",
"ext": {
"protocol": "5.3",
"true_price_opt_out": 1
"igbid":[
{
"id":"adslot ID",
"igbuyer":[
{
"origin":"https://fledge.example.com",
"buyerdata":{
"custom_field_1":"value_1"
}
}
]
}
]
}
}