The QuestionI used the following link to integrate a external Web API application with the Kentico API. See Here.We have endpoints setup on the external application to create contacts in our portal engine application on a separate domain.We expected that the creation of contacts would result in the triggering of our Marketing Automation processes that use the Contact Created trigger.Here is the following code snippet that we have tried: ContactInfoProvider.SetContactInfo(new ContactInfo() { ContactFirstName = @CONTACT_TEST@, ContactLastName = @CONTACT_TEST@, ContactEmail = @CONTACT_TEST@localhost.com@ });This triggers the marketing automation when made on aspx page on the main site application, but it does not do anything when made from our external application.Thanks!
↧