Exporting form fills from Marketo API for specific form ID | Community
Skip to main content
cagarwal
Level 3
May 8, 2023
Solved

Exporting form fills from Marketo API for specific form ID

  • May 8, 2023
  • 1 reply
  • 1630 views

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?

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by SanfordWhiteman

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.

1 reply

SanfordWhiteman
SanfordWhitemanAccepted solution
Level 10
May 8, 2023

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
cagarwalAuthor
Level 3
May 10, 2023

Thanks, Sanford! You're the absolute best!

CA