SOLVED

Exporting form fills from Marketo API for specific form ID

Go to solution
cagarwal
Level 3

Exporting form fills from Marketo API for specific form ID

Hey Community!

 

I'm looking to export form fills from Marketo for a specific form ID (let's say 1234) and include the form submission date and fields (using API perhaps?). Has anyone done this before and have a script to share?

CA
1 ACCEPTED SOLUTION

Accepted Solutions
SanfordWhiteman
Level 10 - Community Moderator

Re: Exporting form fills from Marketo API for specific form ID

First use Describe Activities to get the activityTypeId of Filled Out Form.

 

Then use a Bulk Activity Extract filtered both by

activityTypeIds =  <filled out form activity id>

primaryAttributeValueIds = <your specific form ID>

 

For Filled Out Form, the primary attribute value is the form ID.

View solution in original post

2 REPLIES 2
SanfordWhiteman
Level 10 - Community Moderator

Re: Exporting form fills from Marketo API for specific form ID

First use Describe Activities to get the activityTypeId of Filled Out Form.

 

Then use a Bulk Activity Extract filtered both by

activityTypeIds =  <filled out form activity id>

primaryAttributeValueIds = <your specific form ID>

 

For Filled Out Form, the primary attribute value is the form ID.

cagarwal
Level 3

Re: Exporting form fills from Marketo API for specific form ID

Thanks, Sanford! You're the absolute best!

CA