我正在使用 MailChimp 进行聚合活动的数据导出。 CSV 文件包含该活动的 web_id,我想用它来获取有关该活动的更多详细信息。
我使用的 MailChimp 端点是搜索活动,强制参数是查询。但是没有说明如何构造查询字符串。我试过了:
https://${dc}.api.mailchimp.com/3.0/search-members?&query=TRUE
这可行,但返回的两条记录不是我想要的。但是当我尝试类似的事情时:
https://${dc}.api.mailchimp.com/3.0/search-members?&query=web_id=12345
其中12345是我要查询的web_id。结果返回零条记录
https://${dc}.api.mailchimp.com/3.0/search-members?&query="web_id=12345"
返回零记录
https://${dc}.api.mailchimp.com/3.0/search-members?&query=["web_id":"12345"]
返回零记录
https://${dc}.api.mailchimp.com/3.0/search-members?&query="where web_id=12345"
返回零记录
/search-members
端点无法使用ID,它仅按成员名字、姓氏或电子邮件地址获取结果
例如:https://${dc}.api.mailchimp.com/3.0/search-members?&query=RALPH
https://mailchimp.com/developer/marketing/api/search-members/search-members/