Deals Object¶
Note
Fields marked with an asterisk (*) are optional.
Value |
Type |
Description |
---|---|---|
id |
string |
Deal ID, for example,
|
wseat* |
array of strings |
Array of Buyer seats allowed to bid on this Direct Deal, for example,
|
wadomain* |
array of strings |
Array of advertiser domains (e.g., advertiser.com) allowed to bid on this deal. Omission implies no advertiser restrictions. |
bidfloor* |
float |
Deal price in CPM. If it’s a fixed price deal as set using
|
bidfloorcur* |
string |
Bid floor currency specified using ISO-4217 alpha codes, for example,
|
at* |
integer |
Auction type.
|
Deal Extension Object¶
Value |
Type |
Description |
---|---|---|
buyer_wseat* |
array of strings |
Specifies the Advertisers/Agencies that should have access to this deal in the
Buyer’s system. You should use their seat ID with the Buyer, e.g.
Note: To obtain the correct Seat ID for an agency at a
particular Buyer you will need to contact the agency. You may also find more
information about this in the |
deal_type* |
int |
Indicates additional details about the type of deal, the default is
|
Deals Object Example¶
{
"pmp":{
"private_auction":1,
"deals":[
{
"id":"deal-1",
"wseat":[
"58"
],
"bidfloor":2.5,
"at":1,
"ext":{
"deal_type":3,
"buyer_wseat":[
"abc-123"
]
}
},
{
"id":"deal-2",
"bidfloor":2,
"at":2
}
]
}
}