Expand my Community achievements bar.

We are excited to introduce our latest innovation to enhance the Adobe Campaign user experience — the Adobe Campaign v8 Web User Interface!
SOLVED

Enable Additional URL parameters configured in Brand Configuration only for a single delivery

Avatar

Level 2

Hi everybody,

we need to know if it is possible to enable tracking parameters previously configured on Brand Configuration, only for a single delivery without cancel those parameters from the Brand Configuration . Is it possible?

1 Accepted Solution

Avatar

Correct answer by
Employee Advisor

Few things you could do:

  • add a condition on the delivery ID in the brand config to only reflect it for the requested delivery
    context.delivery.name == 'DM123'
  • or do a filter on the URL to check if a parameter was already defined on the URL and only append from branding if it's not yet there
    $(urlstring).indexOf('utm_source') === -1

View solution in original post

2 Replies

Avatar

Employee Advisor

Hi @ABr86 

You can add the tracking parameter manually in the delivery itself BUT the tracking parameters set at Brand level would add its own too. If the 2 set of tracking parameters don't conflict, it would work.

Another option is to create a 2nd Brand without any tracking parameter and you will select the new Brand for the delivery and do the above step nevertheless.

Hope this helps,

Thanks

Denis

Avatar

Correct answer by
Employee Advisor

Few things you could do:

  • add a condition on the delivery ID in the brand config to only reflect it for the requested delivery
    context.delivery.name == 'DM123'
  • or do a filter on the URL to check if a parameter was already defined on the URL and only append from branding if it's not yet there
    $(urlstring).indexOf('utm_source') === -1