Create lead
documentedCreate a new lead in the specified list.
POST /api/v2/lists/{list_id}/leadsLeadsno 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://{{$subdomain}}.myphoner.com/api/v2/lists/{{$list_id}}/leads" \
-X POST \
-H "Accept: application/json" \
-H "Content-type: application/json" \
-H "Authorization: Token {{MYPHONER_API_KEY}}" \
-d '{"lead": {"first_name": "{{$first_name}}", "last_name": "{{$last_name}}", "mobile_phone": "{{$mobile_phone}}", "email": "{{$email}}", "title": "{{$title}}", "company_name": "{{$company_name}}"}}' \
-D-