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?
Solved! Go to Solution.
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.
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.
Thanks, Sanford! You're the absolute best!