Which Template Tag for unique Campaign ID?

Papapooch

Member
Hi,
I am asked by an Advertising partner to include Links that will have a parameter value of an ID that is unique for a particular campaign and can be used to Query other campaign details.

In the SQL Tables I see CAMPAIGN_ID and CAMPAIGN_UID. But I only see [CAMPAIGN_UID] as a valid Template Tag.

Will [CAMPAIGN_ID} render in the template, or must I use CAMPAIGN_UID] ?

Thanks
 
Hello all,
I am trying to pull a Clicks count of particular URLS in a bunch of related Campaigns... to report to our customers. Basically the URLS we want are the ones that generate money for our customers, as opposed to urls like "Privacy Policy" or "Unsubscribe". We have not Grouped campaigns yet to make that easier. Right now, from the front-end if we select all the campaigns we want to query about clicks and then export...we get the Click Counts but not the actual URLS that were clicked. So I am trying to do this with SQL queries on the database. What is the difference between MW_CAMPAIGN_URL and MW_CAMPAIGN_TRACK_URL? And how are they related? I can relate a group of selected CAMPAIGN_IDs to the MW_CAMPAIGN_URL table but it doesn't appear to return enough records. While MW_CAMPAIGN_TRACK_URL seems to have enough records to list ALL the clicks, there is no CAMPAIGN_ID to relate on. I am trying to find the SQL code in the PHP files that Twisted1919 uses so I can get some clues...but no luck yet.

Thanks to anyone that can shed some light on this for me!
 
OK I guess I jumped the gun with that question as I think I have made sense of the tables.
I started with campaign_url and joined campaign_track_url on url_id. That gave me the correct number of clicks I was looking for.
From that I was able to see the "destination" url and then pulled my data on campaign IDs with a subquery....
where t.campaign_id IN
(select c.campaign_id from mw_campaign c where c.name LIKE 'PartialCamapignName%').


So we have a start! I can probably follow a similar path when dealing with Unsubscribes.
Thanks all...have a nice day!
 
Back
Top