Create or update lead
documentedAdds a new lead or modifies an existing lead on your campaign.
POST /v2/{campaign_id}Leadsno 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://api.kickofflabs.com/v2/{{$campaign_id}}" \
-X POST \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"api_key": "{{KICKOFFLABS_API_KEY}}", "email": "{{$email}}", "phone_number": "{{$phone_number}}", "__url": "{{$__url}}", "__ref": "{{$__ref}}", "__user_agent": "{{$__user_agent}}", "__source": "{{$__source}}", "ip": "{{$ip}}", "custom_fields": {"field1": "{{$field1}}", "field2": "{{$field2}}"} }'