NSJ
NSJ

Reputation: 13

Get all subscribers with same last name via MailChimp API

I have used this library to Add, Delete, and Update subscribers in MailChimp list via my PHP application. https://github.com/drewm/mailchimp-api

It is possible to retrieve all the subscribers from a list, but I couln't find a way to get all the subscribers with the same last name from the list.

Is it impossible?

Upvotes: 0

Views: 507

Answers (1)

strikemike2k
strikemike2k

Reputation: 161

Unfortunately the FNAME and LNAME fields on a list member are technically MailChimp merge_fields and cannot be queried via the API. You can retrieve the full list of members and then filter the results in PHP.

Reference the API documentation for the list/members endpoint: https://developer.mailchimp.com/documentation/mailchimp/reference/lists/members/#read-get_lists_list_id_members

Upvotes: 0

Related Questions