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
Malini JeyachandranMalini Jeyachandran 

Get Only modified contacts from account

Pulling in all the contacts from salesforce. But, how to get only the modiifed objects either using etags / if modified since as I dont want to import millions of contacts again if not modified ?
Best Answer chosen by Malini Jeyachandran
ManojSankaranManojSankaran
Hi Malini,

Below is my understanding on your question. You have to query only the recenlty modified contacts from salesforce.
If my understanding is correct you can use LastModifiedDate = TODAY in the query.

If you are using dataloader we can use the same condition to extract the contacts.

Thanks
Manoj S
 

All Answers

ManojSankaranManojSankaran
Hi Malini,

Below is my understanding on your question. You have to query only the recenlty modified contacts from salesforce.
If my understanding is correct you can use LastModifiedDate = TODAY in the query.

If you are using dataloader we can use the same condition to extract the contacts.

Thanks
Manoj S
 
This was selected as the best answer
Malini JeyachandranMalini Jeyachandran
thanks so much. Works perfect. But Is those headers used when the metadata for an account chnages?
ManojSankaranManojSankaran
Its an audit field and will always be present in salesforce. The metadata wont change.

Okay if it solves your problem, kindly mark it as answer.


Thanks
Manoj S