function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
contactSalescontactSales 

How to return only Appended campaignMembers for a campaign ??

Hi,
I create a campaign , Add / Append contacts to this campaign on a daily basis. 
I have a scheduler application which will return only the appended records (not all) for that Campaign
How can this be done?
 
Is the "Member First Associated Date" Column (for that contact appended) useful ??
If so how I can access it in my code ?
 
I'm using VB.Net 2.0 with Enterprise.wsdl to access web service .
 
 
P.S. You display this column ("Member First Associated Date")  in your "Campaign Contacts" Reports section.
 
 
Regards
werewolfwerewolf
Just use the CreatedDate on CampaignMember, like

select Id from CampaignMember where CreatedDate=TODAY

Assuming they were appended today.