Submit form
documentedSubmit a form response (integration with forms feature).
POST /api/v1/forms/{form_id}/submitFormsno 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://track.customer.io/api/v1/forms/{{$form_id}}/submit" \
-X POST \
-u "{{$site_id}}:{{$track_api_key}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"data": {"id": "{{$id}}", "email": "{{$email}}", "first_name": "{{$first_name}}", "last_name": "{{$last_name}}", "company": "{{$company}}", "custom_field": "{{$custom_field}}"}}'