Expand my Community achievements bar.

We are excited to introduce our latest innovation to enhance the Adobe Campaign user experience — the Adobe Campaign v8 Web User Interface!
SOLVED

Can i create a new campaign through SOAP API calls?

Avatar

Level 1

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.

1 Accepted Solution

Avatar

Correct answer by
Employee Advisor

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

View solution in original post

2 Replies

Avatar

Community Advisor

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

1197206_pastedImage_7.png

From outside adobe check this:

https://docs.campaign.adobe.com/doc/AC6.1/en/CFG_API_Web_service_calls.html

Marcel

Avatar

Correct answer by
Employee Advisor

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