Dual End Card

Utilizing the bundle information from the open RTB bid response in the DT Exchange SDK, a personalized extension of your ad campaign is presented, featuring an extra/dual-end card.
This involves retrieving the app's name, icon, and creating a final touchpoint to provide users with a last opportunity to engage and install.

DSPs will be able to enable dual-end cards using a custom extension field under BidResponse.seatbid.bid.ext, this field will also be called dualendcard.

BidRequest.imp.video.ext

Note

This field will only be sent for eligible traffic

Attribute Description Type Example
dualendcard Indicates whether the inventory is eligible for Dual End Card
1 - true; 0 - false
Int; default 1

“imp”: {
    “video”: {

           “ext”:{
                “dualendcard”: 1

            }
      }
}

BidReqsponse.seatbid.bid.ext

Attribute Description Type Example
dualendcard Indicates whether DTX should render the Dual End Card
1 - true; 0 - false
Int;

“seatbid”: [{
          “bid”: [{

              “ext”: {
                  “dualendcard”: 1
              }
          }]
}]

Both receive a binary value of either 1 or 0, defining whether the DT Exchange SDK should enable the DT Exchange SDK to show the Dual End Card.

FAQ

How will DT Exchange know which store product to show?

To enable Dual End Card, DSPs would have to provide the store listing ID of the app under BidResponse.seatbid.bid.bundle.

In which cases will the Dual End Card be displayed?
If the user clicks the ad, on the video or the companion, DT Exchange will not display the Dual End Card.
How are click tracking and destination handled?
DT Exchange will use the CompanionClickThrough and CompanionClickTracking in the displayed creative end card.

Back to Top ⇧