Seat Bid Object¶
Formally there can be multiple bids within the seatbid
object for two reasons: t
here can be several slots in each bid request and there can be more than one bid for a
single slot. BidSwitch allows no more than two bids for a single ad slot. Bids belonging
to the same seat must be in the same seatbid.bid
array, i.e. all
seatbid.seat
values must be unique per response.
Value |
Type |
Description |
---|---|---|
bid |
array of objects |
(Required) Array of Bid Objects, see Bid Object. The maximum number of bid objects per single bid request ad slot is two. |
package |
int |
For offers with multiple items, this flag indicates if the bidder is willing to accept wins on a subset of bids of requires the full group as a package, where:
|
seat |
string |
ID of the bidder seat on whose behalf this bid is made. The value
should match one of the values supplied in the Note: REQUIRED if the |
Seat Bid JSON Example¶
{
"id":"1234567890",
"seatbid":[
{
"bid":[
{
"id":"1"
},
{
"id":"2"
}
],
"seat":"abc123"
}
],
"ext":{
"protocol":"6.0"
}
}