Removes an item from a campaign.
//# The following code example shows how to use the RemoveItemCampaign message. // Set up the CRM service. CrmAuthenticationToken token = new CrmAuthenticationToken(); // You can use enums.cs from the SDK\Helpers folder to get the enumeration for Active Directory authentication. token.AuthenticationType = 0; token.OrganizationName = "AdventureWorksCycle"; CrmService service = new CrmService(); service.Url = "http://: /mscrmservices/2007/crmservice.asmx"; service.CrmAuthenticationTokenValue = token; service.Credentials = System.Net.CredentialCache.DefaultCredentials; // Create the request object. RemoveItemCampaignRequest remove = new RemoveItemCampaignRequest(); // Set the ID of the campaign. remove.CampaignId = new Guid("d7f33457-660e-de11-bf40-00155da4c706"); // Set the ID of the campaign item to remove. remove.EntityId = new Guid("6e47aeb7-c30d-de11-bf40-00155da4c706"); // Execute the request. RemoveItemCampaignResponse removed = (RemoveItemCampaignResponse)service.Execute(remove);