Sign in

Archive Contact

documented

Archive a Contact.

POST /audiences/{audience_id}/contacts/{contact_id}/actions/archiveContactsno 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://{{server}}.api.mailchimp.com/3.0/audiences/{{$audience_id}}/contacts/{{$contact_id}}/actions/archive" \
  -X POST \
  -H "Accept: application/json" \
  -H "Content-Type: application/json" \
  --user "anystring:{{MAILCHIMP_API_KEY}}" \
  # Sources: Archive Contact endpoint (POST /audiences/{audience_id}/contacts/{contact_id}/actions/archive) from Mailchimp Marketing API docs; API base is https://{dc}.api.mailchimp.com/3.0 (server prefix) as shown in the Quick Start guide.