Update Contact
documentedUpdate an existing omni-channel contact.
PATCH /audiences/{audience_id}/contacts/{contact_id}Contactsno 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://{{$server}}.api.mailchimp.com/3.0/audiences/{{$audience_id}}/contacts/{{$contact_id}}" \
-X PATCH \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-H "Authorization: OAuth {{OAUTH2_ACCESS_TOKEN}}" \
-d '{"email_address": "{{$email_address}}", "merge_fields": {"FNAME": "{{$first_name}}", "LNAME": "{{$last_name}}"}, "status": "subscribed"}'