Sign in

Add Contact

documented

Create a new omni-channel contact for an audience.

POST /audiences/{audience_id}/contactsContactsno 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://{{$dc}}.api.mailchimp.com/3.0/audiences/{{$audience_id}}/contacts" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"email_address": "{{$email_address}}", "status": "subscribed", "merge_fields": {"FNAME": "{{$first_name}}", "LNAME": "{{$last_name}}"}, "tags": ["{{$tag}}"]}'
Add Contact · Mailchimp · OpenIntegrations