sf_get_updated {salesforcer} | R Documentation |
Get Updated Records from a Timeframe
Description
Retrieves the list of individual records that have been inserted or updated within the given timespan in the specified object.
Usage
sf_get_updated(object_name, start, end, verbose = FALSE)
Arguments
object_name |
|
start |
|
end |
|
verbose |
|
Note
This API ignores the seconds portion of the supplied datetime values.
Examples
## Not run:
# get all updated Contact records from midnight until now
updated_recs <- sf_get_updated("Contact", Sys.Date(), Sys.time())
## End(Not run)