Sign in

Update lead

documented

Update a Lead.

PUT /Leads/{LEAD_ID}Leadsno implementation yet0 runs
No 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.insightly.com/v3.1/Leads/{{$lead_id}}" \
  -X PUT \
  -H "Authorization: Basic {{INSIGHTLY_API_KEY}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"FIRST_NAME": "{{$first_name}}", "LAST_NAME": "{{$last_name}}", "TITLE": "{{$title}}", "ORGANIZATION_NAME": "{{$organization_name}}", "EMAIL_ADDRESS": "{{$email}}", "PHONE": "{{$phone}}", "WEBSITE": "{{$website}}", "DESCRIPTION": "{{$description}}", "LEAD_SOURCE": "{{$lead_source}}", "LEAD_STATUS": "{{$lead_status}}"}'"