Sign in

Update Multiple Contacts

documented

Update multiple contacts in a list.

PATCH /v1/lists/{list_id}/contactsListsno 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_REST_API_ENDPOINT}}/v1/lists/{{$list_id}}/contacts" \
  -X PATCH \
  -H "Authorization: Bearer {{VISION6_API_KEY}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"contacts": [ {"id": {{$contact_id_1}}, "email": "{{$email_1}}", "account_key": "{{$account_key_1}}"}, {"id": {{$contact_id_2}}, "mobile": "{{$mobile_2}}", "subscribed": {"email": {{$subscribed_email_2}}, "mobile": {{$subscribed_mobile_2}}} ] }'