简体   繁体   English

Eloqua-云连接器和AppCloud

[英]Eloqua - Cloud Connector and AppCloud

I need to implement a SMS sending service in Eloqua . 我需要SMS sending service in Eloqua实现SMS sending service in Eloqua To achieve this, I create a AppCloud and I added to it an Action Service . 为此,我创建了一个AppCloud ,并向其中添加了一个Action Service

I dont understand when the action of my app is triggered in a campaign. 我不了解何时在广告系列中触发我的应用的操作。 I know that there is a notification system. 我知道有一个通知系统。 Is this system allows me to engage my action API ? 该系统是否允许我使用动作API?

In my campaign I add a member segment in which I put myself and then I connect it to my cloud app action. 在我的广告系列中,我添加了一个成员细分,我将自己放在其中,然后将其连接到我的云应用程序操作。 On the side of my application I add a log system to check whether notification snaps , but it is never called. 在我的应用程序的一边,我添加了一个日志系统来检查通知是否捕捉,但是从不调用它。

Thank you very much for your attention 非常感谢您的关注

In Eloqua, when creating an action service check the following configuration value: 在Eloqua中,在创建操作服务时,请检查以下配置值:

Send notification when members arrive in step 成员到达时发送通知

When members hit the step Eloqua will do a POST request to the action notify URL. 当成员单击步骤时,Eloqua将对操作通知URL发出POST请求。
If you want the contact to be sent in the body of the request set: 如果您希望在请求集的正文中发送联系人:

Records per Notification = 5000 每个通知的记录= 5000

In order to receive the contacts, the action create url will need to respond with a valid record definition: 为了接收联系人,操作create url将需要使用有效的记录定义进行响应:

{
   "recordDefinition" :
   {
      "ContactID" : "{{Contact.Id}}",
      "EmailAddress" : "{{Contact.Field(C_EmailAddress)}}"
   }
}

Here is the official documentation for the action service: http://docs.oracle.com/cloud/latest/marketingcs_gs/OMCAB/index.html#Developers/AppCloud/Develop/develop-action-service.htm 这是动作服务的官方文档: http : //docs.oracle.com/cloud/latest/marketingcs_gs/OMCAB/index.html#Developers/AppCloud/Develop/develop-action-service.htm

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM