"Continue without agreeing" (GDPR TCF)

   Permission: Campaign entities

In order to comply with certain regional regulations, many organizations offer a button on their GDPR first layer message or privacy manager that enables end-users to reject all purposes whose legal basis is user consent while allowing purposes whose legal basis is legitimate interest.

At Sourcepoint, this specific configuration is called continuing without agreeing. In this article, we will cover how to implement the continuing without agreeing setup in your GDPR TCF and GDPR Standard messages. 


Add continue without agreeing button to message

Navigate to an existing GDPR TCF or GDPR Standard first layer message or privacy manager builder and click + in the toolbar pane. 

Screenshot 2024-01-26 at 3.06.28 PM.png

Select the Button component from the subsequent modal to add a new button.

Screenshot 2024-01-26 at 3.10.43 PM.png

Select the newly added button and use the Settings panel to style the button as needed. 

Screenshot 2024-01-26 at 3.16.26 PM.png

With the button selected, expand the Action accordion and select Accept Legitimate Interest Only from the provided dropdown menu. 

  Note: Select the following links to learn more about button actions for first layer messages and privacy managers

Screenshot 2024-06-06 at 1.09.13 PM.png

The Accept Legitimate Interest Only action assigned to your button will, when selected by an end-user, reject all purposes whose legal basis is user consent while allowing purposes whose legal basis is legitimate interest.

Save your first layer message or privacy manager and (re)launch your GDPR TCF or GDPR Standard campaign.


Test continue without agreeing end-user consent flow

Test the end-user consent flow by navigating to your property and selecting your continue without agreeing button in your message when it is displayed.

Screenshot 2024-01-26 at 3.40.30 PM.png

Open the browser console and retrieve the end-user's consentUUID

Screenshot_2024-01-29_at_6_24_49 AM.jpg

Navigate to Sourcepoint's API end-point to retrieve an end-user's consent status for either GDPR TCF or GDPR Standard and input the property's siteId and consentUUID in the provided fields. Click Try It to run the request.

GDPR TCF: GET end-user consent status

GDPR Standard: GET end-user consent status

Screenshot_2024-01-29_at_6_32_58 AM.jpg

Review the response. Vendors who have legitimate interest configured for at least one purpose will populate in the legIntVendors array and purposes who have legitimate interest configured as legal basis will appear in the legIntCategories array.

  Note: Additionally, confirm that the vendors and categories arrays are empty. These arrays detail the vendors and purposes have been consented to by the end-user, respectively.

[
  {
    "dateCreated": "2024-01-29T11:18:40.277Z",
    "consentUUID": "123456-a960-4fce-b7ee-c3e1a3fa4a1a",
    "messageId": 1234567,
    "vendorListId": "1234561fa2286382161cc6aa",
    "vendors": [],
    "legIntVendors": [
      {
        "_id": "123456beb8e05c306f2a1ed6",
        "name": "Vendor 1",
        "vendorType": "CUSTOM"
      },
      {
        "_id": "12345fbeb8e05c30686fd713",
        "name": "Vendor 2",
        "vendorType": "CUSTOM",
        "googleId": 0000
      },
      {
        "_id": "12345da6b8e05c306c0597d7",
        "name": "Vendor 3",
        "vendorType": "IAB"
      }
    ],
    "categories": [],
    "legIntCategories": [
      {
        "_id": "12345cdf4f3f9789140e23a0",
        "name": "Custom Purpose"
      }
    ]
  }
]
Was this article helpful?
0 out of 0 found this helpful

Comments

0 comments

Article is closed for comments.