Skip to content

Instantly share code, notes, and snippets.

@rocketgeek
Created May 17, 2024 19:57
Show Gist options
  • Save rocketgeek/026cfde1a2ab8e63ab021e15ba69b166 to your computer and use it in GitHub Desktop.
Save rocketgeek/026cfde1a2ab8e63ab021e15ba69b166 to your computer and use it in GitHub Desktop.
Add a mailchimp user to a segment
<?php
// @link https://mailchimp.com/developer/marketing/api/list-segments/
$segment_id = '123'; // The segment ID
$user_email = '';
wpmem_mc_query_api_lists(
'post',
array( 'segments', $segment_id, 'members' ),
array( 'email_address' => $user_email )
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment