0

我正在尝试在 C# 中使用 .net 中的 SOAP 在 ExactTarget 上触发自动化

到目前为止,我已经找到了示例页面 help.exacttarget.com/en-GB/technical_library/web_service_guide/technical_articles/interacting_with_automation_studio_via_the_web_service_soap_api/

其中说 var performResponse = soapClient.Perform(performRequest);

但是soapClient.Perform 并不需要一个单一的参数。

到目前为止我所拥有的是这个

Automation automation = new Automation();
PerformOptions options = new PerformOptions();
automation.CustomerKey = "53ba121d-2934-90d6-d86d-e0662c656165";
automation.ScheduledTime = DateTime.Now;
automation.ScheduledTimeSpecified = true;
automation.IsActive = true;
automation.AutomationSource = new AutomationSource()
{
   AutomationSourceID = Guid.NewGuid().ToString(),
   AutomationSourceType = "RestAPI"
};

automation.Notifications = new AutomationNotification[0];
//   automation.ObjectID = "7d88eb5b-80ea-43bb-97b2-4067aaa19c35";
automation.PartnerProperties = new APIProperty[0] { };
// automation.PartnerKey = "53ba121d-2934-90d6-d86d-e0662c656165";

string sA;
string sB;
string sC;


PerformResult[] steve = soapClient.Perform(new PerformOptions(), 
"start", new APIObject[] { automation }, out sA, out sB, out sC);

谁能帮帮我或给我看一个简单的例子

谢谢。

4

1 回答 1

0

我主要使用 Java 与 ET 进行交互,但我可以为您提供一些提示:

  • 尝试首先创建自动化
  • 如果自动化已经存在,请尝试查找/检索它
  • 您可以将此检索到的对象传递给 Perform 方法

我认为如果对象已经存在,那么 CustomerKey 应该足以满足您的需求,您无需再指定任何内容。

于 2014-01-10T12:24:17.367 回答