Create feed
documentedCreate a new feed for a form.
POST /gf/v2/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/feeds" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"form_id": "{{$form_id}}", "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}}", "mappedFields_MMERGE5": "{{$mappedFields_MMERGE5}}", "mappedFields_MMERGE6": "{{$mappedFields_MMERGE6}}", "double_optin": "{{$double_optin}}", "markAsVIP": "{{$markAsVIP}}", "note": "{{$note}}", "feed_condition_conditional_logic": "{{$feed_condition_conditional_logic}}", "feed_condition_conditional_logic_object": [] }}'