Sign in

Update Contact

documented

Update a single contact in a list.

PATCH /v1/lists/{list_id}/contacts/{id}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/{{$id}}" \
  -X PATCH \
  -H "Authorization: Bearer {{VISION6_API_KEY}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"email": "{{$email}}", "first_name": "{{$first_name}}", "last_name": "{{$last_name}}", "custom_fields": { "Field1": "{{$field1}}", "Field2": "{{$field2}}" } }'
Update Contact · Vision6 · OpenIntegrations