I want to create a new campaign through SOAP API calls.
I have developed a web application, through which you can login in your instance and view the list of the campaign, workflow, and delivery. Now I am trying to create a new campaign through web application.
Solved! Go to Solution.
Views
Replies
Total Likes
Hi Marcel,
You can use the Write methof in xtk:session schema.
Just provide the proper operation XML in it and voila, you will have the campaign created.
Regards,
Vipul
Views
Replies
Total Likes
From adobe
var op = nms.operation.create(xml);
op.save();
or
var op = nms.operation.create();
op = op.Duplicate("nms:operation|" + some_campaign_template_id);
op.some_setting = ..;
..
..
op.save();
For different values that can be set check the any campaign's xml source
From outside adobe check this:
https://docs.campaign.adobe.com/doc/AC6.1/en/CFG_API_Web_service_calls.html
Marcel
Views
Replies
Total Likes
Hi Marcel,
You can use the Write methof in xtk:session schema.
Just provide the proper operation XML in it and voila, you will have the campaign created.
Regards,
Vipul
Views
Replies
Total Likes
Views
Likes
Replies