Merge contacts
documentedMerge multiple contacts into a single contact and remove the merged-in ones.
POST /contacts/mergeContactsno 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://api2.frontapp.com/contacts/merge" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"contacts": ["{{$contact_id_1}}", "{{$contact_id_2}}"], "target_contact_id": "{{$target_contact_id}}"}'