Expand my Community achievements bar.

SOLVED

How do we trigger rule for ANY direct call rule

Avatar

Level 3

We use a different direct call rule for different types of 'pages' on our single page app that send data to Analytics.  I have a pixel rule that I want to fire after any direct call rule fires.  Does anybody know how this can be accomplished?

 

 

 

 

1 Accepted Solution

Avatar

Correct answer by
Level 4

What you can do is for every direct call listener that you have, have it fire ANOTHER direct call that fires a universal rule.

Let's say you have 3 direct calls

  • "DirectCall1" Listener > Action to Call "Universal Direct Call Rule"
  • "DirectCall2" Listener > Action to Call "Universal Direct Call Rule"
  • "DirectCall3" Listener > Action to Call "Universal Direct Call Rule"

Then they all link to the universal direct call which has an action like: _satellite.track("universalDirectCall");

Then from there, you create a new rule:

  • "universalDirectCall" Listener > Action: Fire Pixel.

You have more control over when and what and how the pixel gets fired and also has the pixel code only in one place.

View solution in original post

7 Replies

Avatar

Level 1

I don't believe there is a way to fire "after any direct call". But you may find it helpful to use the below:

 

s.registerPostTrackCallback(function(){
  //Code run after every beacon
});

 

Avatar

Level 3
I will look into this, but I want this to only run when a direct call rule fires and not for any other beacon call that we have running based on events or other triggers.

Avatar

Level 3

Thanks Brandon,

 

I will see if I can determine how to make this work.  I would not want it to fire after any of the other beacon calls we have, only those that send to analytics from our direct call rules.

 

Is it possible to have several rules that fire from the same direct call rule?

Avatar

Employee

There is no mechanism to define Rule Actions that should occur for any direct call rule.  You'd simply need to add the Action to any of the Rules you have that use Direct Call as the Event.

Avatar

Level 4

Direct call rule fires will have Action, you can place the pixel after sending the page.

Avatar

Correct answer by
Level 4

What you can do is for every direct call listener that you have, have it fire ANOTHER direct call that fires a universal rule.

Let's say you have 3 direct calls

  • "DirectCall1" Listener > Action to Call "Universal Direct Call Rule"
  • "DirectCall2" Listener > Action to Call "Universal Direct Call Rule"
  • "DirectCall3" Listener > Action to Call "Universal Direct Call Rule"

Then they all link to the universal direct call which has an action like: _satellite.track("universalDirectCall");

Then from there, you create a new rule:

  • "universalDirectCall" Listener > Action: Fire Pixel.

You have more control over when and what and how the pixel gets fired and also has the pixel code only in one place.

Avatar

Level 3
Thank you! We have implementing using this paradigm and it works very well.