Submit form
documentedSubmit a form response to the workspace.
POST /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 \
-H "Authorization: Basic {{TRACK_CREDENTIALS_B64}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"data": {"first_name": "{{$first_name}}", "email": "{{$email}}", "phone": "{{$phone}}", "company": "{{$company}}"}}'