Can i create a new campaign through SOAP API calls? | Community
Skip to main content
April 24, 2017
Solved

Can i create a new campaign through SOAP API calls?

  • April 24, 2017
  • 2 replies
  • 1435 views

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.

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by vraghav

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

2 replies

Marcel_Szimonisz
Community Advisor
Community Advisor
May 3, 2017

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

vraghav
Adobe Employee
vraghavAdobe EmployeeAccepted solution
Adobe Employee
May 3, 2017

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