Skip to content

Commit

Permalink
Cadent Aperture MX Bid Adapter: alias cadent_aperture_mx to emx_digit…
Browse files Browse the repository at this point in the history
…al (prebid#2912)
  • Loading branch information
EMXDigital authored Aug 8, 2023
1 parent 1e53a03 commit 4b7dba0
Show file tree
Hide file tree
Showing 5 changed files with 39 additions and 1 deletion.
1 change: 1 addition & 0 deletions exchange/adapter_builders.go
Original file line number Diff line number Diff line change
Expand Up @@ -246,6 +246,7 @@ func newAdapterBuilders() map[openrtb_ext.BidderName]adapters.Builder {
openrtb_ext.BidderBmtm: bmtm.Builder,
openrtb_ext.BidderBoldwin: boldwin.Builder,
openrtb_ext.BidderBrave: brave.Builder,
openrtb_ext.BidderCadentApertureMX: emx_digital.Builder,
openrtb_ext.BidderCcx: ccx.Builder,
openrtb_ext.BidderCoinzilla: coinzilla.Builder,
openrtb_ext.BidderColossus: colossus.Builder,
Expand Down
2 changes: 2 additions & 0 deletions openrtb_ext/bidders.go
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@ const (
BidderBmtm BidderName = "bmtm"
BidderBoldwin BidderName = "boldwin"
BidderBrave BidderName = "brave"
BidderCadentApertureMX BidderName = "cadent_aperture_mx"
BidderCcx BidderName = "ccx"
BidderCoinzilla BidderName = "coinzilla"
BidderColossus BidderName = "colossus"
Expand Down Expand Up @@ -346,6 +347,7 @@ func CoreBidderNames() []BidderName {
BidderBmtm,
BidderBoldwin,
BidderBrave,
BidderCadentApertureMX,
BidderCcx,
BidderCoinzilla,
BidderColossus,
Expand Down
17 changes: 17 additions & 0 deletions static/bidder-info/cadent_aperture_mx.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
endpoint: "https://hb.emxdgt.com"
maintainer:
email: "contactaperturemx@cadent.tv"
gvlVendorID: 183
capabilities:
site:
mediaTypes:
- banner
- video
app:
mediaTypes:
- banner
- video
userSync:
iframe:
url: "https://cs.emxdgt.com/um?ssp=pbs&gdpr={{.GDPR}}&gdpr_consent={{.GDPRConsent}}&us_privacy={{.USPrivacy}}&redirect={{.RedirectURL}}"
userMacro: "$UID"
2 changes: 1 addition & 1 deletion static/bidder-info/emx_digital.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
endpoint: "https://hb.emxdgt.com"
maintainer:
email: "adops@emxdigital.com"
email: "contactaperturemx@cadent.tv"
gvlVendorID: 183
capabilities:
site:
Expand Down
18 changes: 18 additions & 0 deletions static/bidder-params/cadent_aperture_mx.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Cadent Aperture MX Adapter Params",
"description": "A schema which validates params accepted by the Cadent Aperture MX adapter",
"type": "object",
"properties": {
"tagid" : {
"type": "string",
"description": "The id of an inventory target"
},
"bidfloor": {
"type": "string",
"description": "The minimum price acceptable for a bid"
}
},

"required": ["tagid"]
}

0 comments on commit 4b7dba0

Please sign in to comment.