Sign in

Create contact

documented

Creates a new contact.

POST /v3/contactsContactsno 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.reply.io/v3/contacts" \
  -X POST \
  -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}}", "notes": "{{$notes}}", "customFields": [{"key": "leadSource", "value": "{{$leadSource}}"}, {"key": "budget", "value": "{{$budget}}"}] }'"