AdAssetList

A list of assets such as visual or textual component necessary for presenting an ad to a customer, as well as for providing call-to-action links and other URLs.

Property Type Description
logo Image Brand logo image
largeRectangle Image A presentational layer image, such as a "Hero image"
smallRectangle Image An image asset for populating small UI elements
copy Text Textual ad copy
callsToAction CallsToAction Call to action ad copy

Example

Info

The smallRectangle image will not include a large AdImageValue

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
    "logo": {
        "type": "IMAGE_URL",
        "value": {
            "large": {
                "url": "https://www.example.com/img.jpg",
                "width": 627,
                "height": 627
            },
            "small": {
                "url": "https://www.example.com/img.jpg",
                "width": 128,
                "height": 128
            }
        }
    },
    "largeRectangle": {
        "type": "IMAGE_URL",
        "value": {
            "large": {
                "url": "https://www.example.com/img.jpg",
                "width": 1198,
                "height": 627
            },
            "small": {
                "url": "https://www.example.com/img.jpg",
                "width": 382,
                "height": 200
            }
        }
    },
    "smallRectangle": {
        "type": "IMAGE_URL",
        "value": {
            "small": {
                "url": "https://www.example.com/img.jpg",
                "width": 382,
                "height": 200
            }
        }
    },
    "copy": {
        "type": "AD_COPY",
        "value": {
            "headline": "10% back",
            "subheadline": "Subscriptions",
            "shortPreMessage": "Get 10% back at Bob's",
            "thankYouMessage": "Thank you for shopping! You got $24.46 back!",
            "marketingCopy": "Terms and conditions apply. Offer only applies to some locations.",
            "rewardCopy": "Get 10% back on any purchase of $5 or more at Bob's Warehouse. Maximum of $30 back. Minimum transaction of $5 required.",
            "preMessage": "Get 10% back on any purchase of $5 or more at Bob's Warehouse.",
            "postMessage": "Time and inventory is limited. Maximum of $30 back. Minimum transaction of $5 required. Terms and conditions apply. Offer only applies to some locations. <a class='cardlytics_anchor_styling cardlytics_anchor_target' target='_blank' href='http://example.com' aria-label='here'>Please click here </a> to find a location near you. Offer expires 1/19/2024. <b>Offer only valid on purchases made directly with the merchant.</b> Offer not valid on purchases made using third-party services, delivery services, or a third-party payment account (e.g., buy now pay later). Payment must be made on or before offer expiration date.",
            "termsAndConditions": "Offer expires 1/19/2024. <b>Offer only valid on purchases made directly with the merchant.</b> Offer not valid on purchases made using third-party services, delivery services, or a third-party payment account (e.g., buy now pay later). Payment must be made on or before offer expiration date."
        }
    },
    "callsToAction": {
        "type": "CALL_TO_ACTION_LINKS",
        "value": {
            "buyNow": {
                "type": "WEB_LINK",
                "value": "https://www.example.com/shopping?productId=4"
            }
        }
    }
}