ProductTeam
Community Manager
Community Manager

Personalizing content with third-party integrations

You can integrate DXM's personalizing content with third-party solutions. This guide includes information on integrating with the following solutions: 

  • Salesforce
  • Marketo

Salesforce Web-to-lead integration

Note: These instructions are originally available on Crownpeak's Github repository.

Salesforce's Customer Relationship Management (CRM) solution gives your sales teams the power to close deals like never before with cloud-based tools that increase productivity, keep pipeline filled with leads, and score more wins.

This turnkey integration creates a connector between DXM and Salesforce that generates leads. The connector also allows you to create content in WCO that is built in to the Crownpeak DXM platform and allows you to personalize content based on lead data.

wco-logical-diagram.png

WCO diagram

Capabilities

Use Crownpeak WCO to personalize a dynamic page experience, and deliver the content into Salesforce Sales Cloud.

wco-screenshot-1.png

DXM Asset in Preview Mode, showing WCO targeting groups, allowing author to tailor the message to each user

wco-screenshot-2.png

Page published via DXM, rendering form to end-user. Page is currently showing content for the 'anonymous' visitor group

wco-screenshot-3.png

Upon form submission, lead data is transmitted securely to Salesforce Sales Cloud (CRM)

  1. Open your Salesforce account and find your Organizational ID. In the Salesforce Quick Find box type "Company".

    wco-find-company.png
    In Salesforce account, searching for organizational ID

  2. Click Company Information. In the Company Information window, locate the Organization ID. Save this ID for later.

    wco-organization-id.png
    Organizational ID in Salesforce

  3. Within DXM, open WCO > WCO Standalone.

    wco-standalone.png
    WCO standalone in DXM

  4. Open Web Content Optimizer.
  5. Select Settings > Global Settings.
  6. Select Manage Connectors.
  7. Select the Salesforce Connector.
  8. Add the Organizational ID you copied previously.

    wco-organization-id-wco.png
    Adding the Salesforce organizational ID

  9. Enter your organizational ID in the Value field and save the connector.
  10. Go back to DXM to continue the setup.
  11. From DXM, navigate to WCO > Forms > New Form. We will use this form on a web page to inject visitor data to WCO and Salesforce using the connector we created earlier. This example form will create an initial lead in Salesforce. You may add fields you want to map.

    New_Form.png
    DXM WCO New Form button

  12. Click Edit for each field and ensure each form element’s name maps to your Salesforce data field names exactly.
  13. To find the names of your Salesforce Lead fields, open Salesforce and in the Quick Find box type ‘Leads’. Select Build > Customize > Leads > Fields.
  14. You can now map your Form Field Names with Salesforce Lead Field Names.

    wco-map-fields-all.png
    Mapping form field names with Salesforce lead field names

  15. Click Next in the Form Builder tool.
    • General (tab) - Give your form a name. For example: "Salesforce Lead Form"
    • Notification - Add details if you want to inform an individual that a form was submitted. You can also set this up in Salesforce when the lead is generated.
    • Rules - Add a redirect page URL for when the form is submitted. In the connector, click on the dropbox and select the Salesforce Connector created previously.
    • Auto-Reply - Add a standard response email that will be sent when the visitor submits the form.
  16. Save the form. The form is now ready for insertion into a page.
  17. Open an asset that has a WCO enabled WYSIWYG field embedded in it and click Create Snippet.

    Create_Snippet.png
    WCO WYSIWYG Create Snippet link

  18. Provide a suitable name for the snippet and then save the asset.
  19. Click Form.
  20. Save and preview the page. The form will not show styling in the WYSIWYG unless it has been bound with a style sheet; however, preview should show the form exactly how it will look on the site.
  21. You can now publish the page with your lead generating form and test it out. When a visitor submits the form, it will create a record in WCO and a lead in Salesforce.

Considerations

The Salesforce integration only works to inject data in to the CRM; however, it is possible to gather lead data at the front-end using a coded solution.

You can create personalization rules around the lead data that was gathered in WCO. In the example in this guide, that could be set to deliver content dependent on the visitor’s company or other data that you have chosen acquire.

Marketo integration

Create Connectors

In this guide, you'll create two connectors in WCO. One for sending data to Marketo and another one for SOAP API call.

  1. From DXM, navigate to WCO > Settings > Settings tab > Global Settings > Manage Connectors.

    Manage_connectors.png
    DXM WCO Manage Connectors button

  2. Select the Marketo API connector.
  3. Enter the SOAP API information from Marketo. Marketo configuration values can be found in the Marketo admin portal. Go to Admin > Integration > Web Services, and copy Endpoint URL, User ID, and Encryption Key from the SOAP API section.

    Marketo_API_connector.png
    Marketo connector dialog

  4. Create a connector to send data to your Marketo form by clicking Create New > [Connector Name].
  5. You will need to create a form in Marketo. Once you have it, enter the endpoint URL, formid, and munchkinId.

Create a form in WCO Wyiswyg

Next, create a form that you can submit to Marketo so that later we can compare the value to target the user.

  1. From a Wysiwyg that supports WCO create a new snippet > [Enter snippet name] > Save the asset.
  2. Click "Form" > "New Form" > Build a form > Insert new or existing field. Make sure the field names are same as Marketo form.

    Important: create a hidden field with the name "_mkt_trk". We will use this field to track the user later.

  3. Go to Form Settings > Rules tab > [Select the marketo form connector] > Add Connector > Save and Insert Form. This will insert the form created from WCO into your WYSIWYG. You should see something like below:

    marketo_form.png
    DXM WCO WYSIWYG

  4. Create a javascript code to copy _mkt_trk cookie generated from Marketo snippet into our WCO hidden field. The idea is to send the tracking cookie to Marketo when the form is submitted.

Below is a sample:

function getCookie(cname) {
  var name = cname + "=";
  var decodedCookie = decodeURIComponent(document.cookie);
  var ca = decodedCookie.split(';');
  for(var i = 0; i <ca.length; i++) {
    var c = ca[i];
    while (c.charAt(0) == ' ') {
      c = c.substring(1);
    }
    if (c.indexOf(name) == 0) {
      return c.substring(name.length, c.length);
    }
  }
  return "";
}

function formSubmit(e) {
var $this = $(this);
var marketoCookie = encodeURIComponent(getCookie('_mkto_trk'));
if (marketoCookie != '') {
$this.find('input[name=_mkt_trk]').val(marketoCookie);
}
}

Create targeting from WCO Wysiwyg

  1. From a WYSIWYG that supports WCO create a new snippet > [Enter snippet name] > Save the asset.
  2. Create a targeting group by doing "Add Targeting Variant > Create Targeting Group > New Group > Marketo (from New Field) > Edit.

    Lead Key Type = Cookie (generated by the Munchkin Javascript)

    Lead Key Value = _mkt_trk (this is the field we created while creating the form)

    Marketo Field Name = Enter the Marketo field name that you want to compare. You can find a list of all Marketo fields to query in the Marketo admin portal, under Admin > Field Management > Export Field Names. Use the "SOAP API Name" column.

    Comparison Value = The return value from Marketo you want to compare.

    targeting_group.png
    Marketo field information in Salesforce

  3. Enter a variant name and select the targeting group you just created.

    targeting_variant.png
    Add Targeting Variant screen in Salesforce

  4. Enter different content for each variant, then save and publish the page.

    targeting_content.png
    DXM WCO WYSIWYG variant drop-down

Testing

To test, first submit the WCO form then go to the page that has targeting group. The content should change if the information submitted matches the rule created from targeting group.

Labels (1)

Can't find what you are looking for?

Find Answers

Search our DXM Forum to find answers to questions asked by other DXM users.

Ask a Question

No luck? Ask a question. Our Product and Support teams are monitoring the Forum and typically respond within 48 hours.

Ask a Question