Sign in

Create Contact in List

documented

Create a single contact in a list (same endpoint as bulk-create-contacts).

POST /v1/lists/{list_id}/contacts{?remove_unsubscribers}Listsno 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://{{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}}"}]}'