Webservice API 2 - not trackable links by default

Use this forum for questions regarding adoption and functionality of OpenEMM

Moderator: moderator

mastroca
Posts: 6
Joined: Wed Jun 11, 2014 8:37 am

Webservice API 2 - not trackable links by default

Post by mastroca »

Hello.
I'm trying to create mailings with webservice API 2.
When I add a block of HTML content (AddContentBlock) all links are, by default, trackable. Is there any possibility that default are "not trackable"?.

Thank you
mastroca
Posts: 6
Joined: Wed Jun 11, 2014 8:37 am

Re: Webservice API 2 - not trackable links by default

Post by mastroca »

Hi,
The solution I have implemented is to create a trigger on the table that stores the URLs.
This trigger changes the value of the "measure_type" 0 ("not trackable").

CREATE TRIGGER trigger_ins_rdir_url_tbl BEFORE INSERT ON rdir_url_tbl
FOR EACH ROW
BEGIN

SET NEW.measure_type = 0;

END;
mdoerschmidt
Posts: 25
Joined: Fri Jan 04, 2013 8:55 am

Re: Webservice API 2 - not trackable links by default

Post by mdoerschmidt »

Hi,

there is currently no possibility, to change settings of links by webservice.
The only way to make a link not trackable is to log in to web UI and change link settings manually.


Best regards,

Markus
Post Reply