How to get the Contact Guids from a PartyList in a

2019-05-10 12:48发布

I'm making a plugin that triggers on the create message of a custom activity SMS. These plugin will send the actual sms using a third party sms service provider.

Therefore i need to get the mobilephone numbers for every contact in the "To" field of the SMS activity. This is a field of type: PartyList.

I'm currently using the following code:

EntityCollection Recipients;
Entity entity = (Entity) context.InputParameters["Target"];

IOrganizationServiceFactory serviceFactory = (IOrganizationServiceFactory)serviceProvider.GetService(typeof(IOrganizationServiceFactory));
IOrganizationService service = serviceFactory.CreateOrganizationService(context.UserId);

Content = entity.GetAttributeValue<String>("subject");
Recipients = entity.GetAttributeValue<EntityCollection>("to");

for (int i = 0; i < Recipients.Entities.Count; i++)
{
  Entity ent= Recipients[i];

  string number = ent["MobilePhone"].ToString();    
}

But this is not working, i think the ent variable contains no attributes.

I've tried coding with ActivityParty also but not luck either.

I hope someone of you can help me with this one.

Thanks!

2条回答
地球回转人心会变
2楼-- · 2019-05-10 13:43

Recipients is a list of ActivityParty, not of contacts, accounts, ... . Therefore you have to read its PartyId

EntityReference partyId = ent.GetAttributeValue<EntityReference>("partyid");

With this information you have to look for the record which is referecend with this partyID. It could be a contact, an account, a systemuser, ... You'll get this information trough

var partyType = partyId.LogicalName;

Then you could retrieve the record this record in order to read the number.

查看更多
相关推荐>>
3楼-- · 2019-05-10 13:48

Here's is how I finally did it:

EntityCollection Recipients;
Entity entity = (Entity) context.InputParameters["Target"];

IOrganizationServiceFactory serviceFactory 
  = (IOrganizationServiceFactory)serviceProvider.GetService(
    typeof(IOrganizationServiceFactory)); 
IOrganizationService service = serviceFactory
  .CreateOrganizationService(context.UserId); 

Content = entity.GetAttributeValue<String>("subject"); 
Recipients = entity.GetAttributeValue<EntityCollection>("to"); 

for (int i = 0; i < Recipients.Entities.Count; i++)
{
  ActivityParty ap = Recipients[i].ToEntity<ActivityParty>();
  String contactid = ap.PartyId.Id.ToString();
  Contact c = (Contact) service.Retrieve(
    Contact.EntityLogicalName,
    ap.PartyId.Id,
    new ColumnSet(new string[]{ "mobilephone" }));
  String mobilephone = c.MobilePhone;
  ...
} 
查看更多
登录 后发表回答