Automated Excel Imports | Community
Skip to main content
May 23, 2014
Question

Automated Excel Imports

  • May 23, 2014
  • 4 replies
  • 2219 views
Hello there,

We are working with a service who provides us with a daily list of leads via excel spreadsheet. I was wondering if anyone has experience working with a Marketo partner or tool that can automatically call to Excel spreadsheets or batch import them - rather than do daily manual imports, we would rather automate the process.

Of course, we are also exploring the data entering Marketo directly via API, but for now we have excel spreadsheets for specific reasons, and we would like to work with our existing processes before we build something new.

Any thoughts on automated/scheduled excel imports?
This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.

4 replies

May 23, 2014
The Marketo importToList API would work great in this case: 
http://developers.marketo.com/documentation/soap/importtolist/

An example program that would work: 
Step 1: Convert the Excel file to CSV format
Step 2. Write a program to read the CSV file, and upload to Marketo using the importToList API
Step 3: Verify the upload was successful with the getImportToListStatus API
http://developers.marketo.com/documentation/soap/getimporttoliststatus/
May 23, 2014
You should also explore "server-side" form post. A lot of vendors are set up to push leads to you using form posts instead of direct api uploads.
May 23, 2014
Mulesoft also has a free product that you might want to take a look at: http://www.dataloader.io - these can only load into SFDC at the moment, but you can set up Marketo campaigns to look for these leads.

They also have a paid CloudHub product that can sync with Marketo, but requires some development efforts.
https://www.mulesoft.com/platform/saas/cloudhub-features

I am not affiliated with Mulesoft.
May 27, 2014
Marketo has sample uses for importToList API in PHP, Ruby and Java. Does anyone have samples in VBScript or know of a reliable PHP to VBScript converter?