Add feed for form
documentedCreate a feed for a specific form.
POST /gf/v2/forms/{FORM_ID}/feedsFeedsno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://{{$site_domain}}/wp-json/gf/v2/forms/{{$FORM_ID}}/feeds" \
-X POST \
-u "{{GRAVITYFORMS_API_KEY}}:{{GRAVITYFORMS_SECRET}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"addon_slug": "{{$addon_slug}}", "meta": {"feedName": "{{$feedName}}", "mailchimpList": "{{$mailchimpList}}", "mappedFields_EMAIL": "{{$mappedFields_EMAIL}}", "mappedFields_FNAME": "{{$mappedFields_FNAME}}", "mappedFields_LNAME": "{{$mappedFields_LNAME}}", "mappedFields_MMERGE4": "{{$mappedFields_MMERGE4}}"}}'