Sign in

New contact

documented

Webhook invoked when a new contact is created.

POST /newContactContactno 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://{{$webhook_endpoint}}/newContact" \
  -X POST \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "X-Api-Key: {{REZDY_API_KEY}}" \
  -d '{"id": {{$id}}, "firstName": "{{$firstName}}", "middleName": "{{$middleName}}", "lastName": "{{$lastName}}", "name": "{{$name}}", "email": "{{$email}}", "companyName": "{{$companyName}}", "phone": "{{$phone}}", "mobile": "{{$mobile}}", "fax": "{{$fax}}", "skype": "{{$skype}}", "dob": "{{$dob}}", "preferredLanguage": "{{$preferredLanguage}}", "newsletter": {{$newsletter}}, "marketing": {{$marketing}}, "aboutUs": "{{$aboutUs}}"}'