删除联系人和营销列表 CRM 4.0 之间的关系
谁能告诉我如何检索与 crm 4.0 中的营销列表相关的联系人?
营销列表(“blabla”)-->联系人(Adam Meyer)
我将查看具有特定 Guid 的联系人是否在营销列表中。
希望你能理解我...
can anyone tells me how I can retrieve a contact in relationship with the marketing list in crm 4.0 ?
Marketinglist ("blabla") --> Contact(Adam Meyer)
I will see if a contact with a specicic Guid is in a Marketing List.
Hope you unterstand me...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这些关系存储在名为
listmember
的隐藏实体中。但是,您无法直接检索这些记录。您必须对联系人实体进行检索,将其加入列表成员,然后根据营销列表的listid
对其进行过滤。 这是一个例子。要删除某人(正如您在标题中提到的),您需要执行
删除成员列表请求
。 SDK 包含详细信息。Those relationships are stored in a hidden entity called
listmember
. However, you can't retrieve those records directly. You'll have to do a retrieve on the contact entity, join it to list member, and then filter it based on thelistid
of the marketing list. Here's an example.To remove someone (as you mentioned in the title), you'll need to execute a
RemoveMemberListRequest
. The SDK has the details.