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
Carl PierreCarl Pierre 

Is is possible to get campaign changes (Updates) with REST API

Is possible to get campaign changes since  my last REST API request?

Is possbble to have a list of updated campaigns?

For example if the campaign_name = test1 become campaign_name= test3
 
GregAtParetoGregAtPareto

I don't think SalesForce remembers when your last REST request was so it would have no baseline to measure from.

One possible way would be for you to retain the JSON representation of the campaign on your end, then in future call the REST API for the current representation then compare on your side to see what's changed.

Alternatively, write some APEX trigger code that does a callout to your service (if it's a REST service itself) whenever the record changes in SalesForce. That way you get the changes in real time.

HTH