Hi @john_mooney,
It seems like there's an issue with how that SiteCat library handles subsequent calls with multiple servers, as I tried it in the AppMeasurement for JS tag and it works as expected. I'll continue looking into it for a permanent fix, but to answer your question:
Yes, there are mutiple individual templates per tag, they are identified by the UID on the right side of the tag list. You can see the templates themselves by going up to the top right of TiQ, clicking on your email and selecting "Manage Templates".
As a quick solution, you could go into the 2nd SiteCat template and around line 298 should be the start of the send function:
u.send=function(a,b,c,d,e,f,g,h,ev){
Beneath this line, you can add:
u.o.trackingServer = "otherEndpoint.net"; u.o.trackingServerSecure = "otherEndpoint.net";
This will force the 2nd template to always use the other endpoint.
Let me know if you have any other questions,
Do
... View more