returns a list of record IDs changed (adds, updates, deletes)
This is a convenience function that scans logs and returns record IDs of changed records.
changedRecords(rcon, ...)
rcon
: A redcapConnection
object....
: Arguments passed to exportLogging()
Returns a list with the elements
updated | character vector of updated record IDs |
deleted | character vector of deleted record IDs |
created | character vector of created record IDs |
Makes a call to exportLogging
with passed arguments. Returns filtered list or records IDs with update, delete or create events.
## Not run: unlockREDCap(connections = c(rcon = "project_alias"), url = "your_redcap_url", keyring = "API_KEYs", envir = globalenv()) # Changes in last 24 hours changedRecords(rcon, beginTime=as.POSIXct(Sys.time()-86400)) ## End(Not run)