Create Multiple Contacts
documentedCreate one or more contacts in a list in a single request.
POST /v1/lists/{list_id}/contacts{?remove_unsubscribers}Listsno 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://{{VISION6_API_ENDPOINT}}/v1/lists/{{$list_id}}/contacts?remove_unsubscribers={{$remove_unsubscribers}}" \
-X POST \
-H "Authorization: Bearer {{VISION6_API_KEY}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"contacts": [{"email": "{{$email}}","mobile": "{{$mobile}}","subscribed": {"email": {{$subscribed_email}},"mobile": {{$subscribed_mobile}}},"account_key": "{{$account_key}}"}]}'