Created
February 15, 2021 16:11
-
-
Save vguerrerobosch/8baf7c6dbed7631cbc0b7440cad15f5b to your computer and use it in GitHub Desktop.
List interests in Mailchimp Audience
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# List interest categories | |
curl -X GET \ | |
'https://{server}.api.mailchimp.com/3.0/lists/{list_id}/interest-categories' \ | |
--user 'apikey:API_KEY' | |
# List interests in category | |
curl -X GET \ | |
'https://{server}.api.mailchimp.com/3.0/lists/{list_id}/interest-categories/{interest_category_id}/interests' \ | |
--user 'apikey:API_KEY' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment