Is there integration with Marketo forms?

Uploadcare doesn’t have an official plugin/integration for Marketo, but it’s possible to add the Uploadcare file uploader using the technique described in this article by Jon Bourne from http://digitalpi.com

High-Level Overview

Basically, the solution consists of these steps:

  1. Set up an uploader widget on a third-party service.
  2. Create a custom Marketo landing page template.
  3. Add some Javascript to transform the hidden form field to a file upload widget.
  4. Create a custom field in Marketo where we will store the uploaded file URL.
  5. Create a Marketo landing page from your new template and a form with a hidden field.

Get the Upload Widget

  1. Create an account with Uploadcare and click the verification link in your email.

  2. In your new Uploadcare account, create a new project and configure the upload widget.

    • Disable any services from which you don’t want to receive files (such as Flickr).
    • By default, users can upload only one file, but it can be any type of file—DOCX, PDF, VSDX, JPG, etc. It’s best to leave these settings as they are. (If you experiment with multiple files, I’d love to hear how it went!)
  3. Under the Widget section, we’re going to use the Javascript code from the Widget to page box but you can ignore the others–we’re going to use custom code instead.

Create the Landing Page Template

Remember that Javascript code from Uploadcare that we looked at earlier? Now we’re going to add it to the landing page, plus one more custom Javascript snippet to make it work with a Marketo form. This is the hardest part if you’re not used to working with code, but we’ll walk through it step by step. Hang in there!

  1. In Design Studio, find the landing page template you want to use for your file upload form, then clone it, naming it something like “File Upload Form” so you remember its purpose later. Creating a new template is necessary because we need to place some Javascript code after jQuery is loaded, and it is often loaded near the bottom of the page. In case that’s a new term for you, jQuery is a Javascript framework that enables cool functionality—like adding file upload widgets!
  2. Add the Uploadcare Javascript code to your landing page template.
    1. In Design Studio, edit your new File Upload Form landing page template.
    2. Paste your Uploadcare Javascript code just above the tag at the very bottom of the landing page code.
    3. Don’t save the template just yet.
  3. Add custom Javascript code to make the Uploadcare widget work with a Marketo form.
    1. Copy the Javascript code below. It essentially transforms the hidden form field that we placed in the Marketo form to the Uploadcare file upload widget. If you chose to use a different field than the Uploaded File field that we’re using in this example, then you will need to change this code accordingly where it says “name=uploaded_file” to whatever the name of your field is. Paste this code beneath the Uploadcare code that you pasted in Step 1 above but before the closing tag.
        <script type="text/javascript">
           function showUploader() {
             jQuery('input[name=uploaded_file]').attr('role','uploadcare-uploader');
           }
           jQuery(document).ready(function(){
             setTimeout(showUploader,1000);
           });
         </script> 
  1. Add styles to make the upload widget look a little better. You can tweak these as you see fit, but this will get you started.
    1. Copy this CSS code and paste it beneath the last Javascript block.
    <style type="text/css">
       div.uploadcare-widget-button {
         display:block;
         margin: 15px 0;
         width:160px !important;
         height: 35px !important;
         padding: 10px 0 0 10px;
       } 
   </style> 
  1. The last 20 or so lines of your template before the <body> tag should look something like this.

    05-digital-pi-marketo-file-upload-landing-page-template-code
  2. Approve and Close this template.

Putting the Pieces Together

Okay, let’s make some magic happen. The setup in Marketo requires several things: a form (duh!); a landing page where the form lives; a string field where you can store the URL of the uploaded file.

  1. Figure out what Marketo field to use to store the URL of the file that is uploaded. In this example, we’ll use a custom String field called “Uploaded File”. You will likely need to create this field, or you could use a temporary field that we’ll overwrite later.
  2. Create a form. It can be as complex as you like, but our example only has three visible fields—First Name, Last Name, and Email Address.
    1. Add the Uploaded File field to the form, and set its Field Type to Hidden.
    2. Approve and Close the form.
  3. Create a new landing page from the File Upload Form template. Add whatever copy and images make sense for your purposes.
  4. Add the form we just created to the landing page, as you normally would.
  5. Approve and Close this landing page.

Try It Out!

Now the fun part—seeing it in action! Let’s give it a shot in the browser.

  1. Select your page in Marketo and click the orange View Approved Page button.
  2. You should see your new landing page open up with your form. After a moment, you should also see a box show up in your form that says “Choose a file.” If so, your integration worked!
  3. When you click on that box, you’ll see a drag-and-drop interface for uploading a file along with any other upload options you left checked when configuring the Uploadcare widget.

Best Practices

While this is good as a proof of concept, there are a few other things to consider when using this technique in a production environment.

  1. First, when you upload files from a Marketo form, it’s probably best to move this data from the Uploaded File field and put it somewhere that it won’t be overwritten if the person uploads a new file. I recommend using {{lead.Uploaded File}} in a Flow step to write the uploaded file URL to an Interesting Moment.
  2. Next, this upload widget might not work for everyone in every browser. Post instructions for sending a file separately (probably via email) for anyone who has trouble with the form.
  3. Finally, you will probably want to involve a web developer to help customize your upload widget further to better match your brand identity.

Having trouble getting the button to go to the Hidden field near the form, button is floating on the left hand side of the landing page

Any ideas on how to fix this?

Hi @lori.valencia, thanks for reaching out! You submitted the same question via help@uploadcare.com. Did you manage to fix this following our recommendations? If you didn’t, let me know, and I’ll be glad to help you sort this issue out.