Update contact
documentedUpdates an existing contact.
PATCH /v3/contacts/{id}Contactsno 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.reply.io/v3/contacts/{{$contact_id}}" \
-X PATCH \
-H "Content-Type: application/json" \
-H "X-API-Key: {{REPLY_API_KEY}}" \
-H "Accept: application/json" \
-d '{"firstName": "{{$firstName}}", "lastName": "{{$lastName}}", "email": "{{$email}}", "title": "{{$title}}", "company": "{{$company}}", "domain": "{{$domain}}", "city": "{{$city}}", "state": "{{$state}}", "country": "{{$country}}", "timeZone": "{{$timeZone}}", "phone": "{{$phone}}", "linkedInProfile": "{{$linkedInProfile}}", "linkedInSalesNavigator": "{{$linkedInSalesNavigator}}", "linkedInRecruiter": "{{$linkedInRecruiter}}", "notes": "{{$notes}}", "customFields": [ {"key": "leadSource", "value": "{{$leadSource}}" }, {"key": "budget", "value": "{{$budget}}" } ] }'