Sign in

Start contact import

documented

Start a contact import job.

POST /api/v2/contacts/importsContactsno 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://{{$domain}}.freshdesk.com/api/v2/contacts/imports" \
  -X POST \
  -u "{{FRESHDESK_API_KEY}}:X" \
  -H "Content-Type: multipart/form-data" \
  -F "file=@{{$csv_file}};type=text/csv" \
  -F "fields[name]={{$name_index}}" \
  -F "fields[email]={{$email_index}}" \
  -H "Accept: application/json"