Import contacts
documentedImport multiple contacts in a single request (create or update).
PUT /api/1/contactsContactsno 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://evenium.com/api/1/contacts?accessToken={{OAUTH2_ACCESS_TOKEN}}" \
-X PUT \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{"contacts": [ {"customId": "{{$customId}}", "firstName": "{{$firstName}}", "lastName": "{{$lastName}}", "gender": "{{$gender}}", "email": "{{$email}}", "company": "{{$company}}", "fields": [ {"name": "FUNCTION", "value": "{{$function}}"}, {"name": "GENERIC_PHONE_NUMBER", "value": "{{$phone}}"} ] } ] }'"