Sign in

Create contact

documented

Create a new contact.

POST /api/v2/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://{{$freshdesk_domain}}.freshdesk.com/api/v2/contacts" \
  -X POST \
  -H "Authorization: Basic {{FRESHDESK_API_KEY}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"name": "{{$name}}", "email": "{{$email}}", "phone": "{{$phone}}", "mobile": "{{$mobile}}", "address": "{{$address}}", "description": "{{$description}}", "job_title": "{{$job_title}}", "time_zone": "{{$time_zone}}", "language": "{{$language}}", "active": {{$active}}, "custom_fields": {{$custom_fields}}, "company_id": {{$company_id}} }'