Page 1 of 1

Webservice API 2 - not trackable links by default

Posted: Wed Jun 11, 2014 8:53 am
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

Re: Webservice API 2 - not trackable links by default

Posted: Fri Jun 13, 2014 11:00 am
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;

Re: Webservice API 2 - not trackable links by default

Posted: Fri Jun 13, 2014 12:56 pm
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