Learn R Programming

redcapAPI (version 2.9.1)

changedRecords: returns a list of record IDs changed (adds, updates, deletes)

Description

This is a convenience function that scans logs and returns record IDs of changed records.

Usage

changedRecords(rcon, ...)

Value

Returns a list with the elements

updatedcharacter vector of updated record IDs
deletedcharacter vector of deleted record IDs
createdcharacter vector of created record IDs

Arguments

rcon

A redcapConnection object.

...

Arguments passed to exportLogging()

Details

Makes a call to exportLogging with passed arguments. Returns filtered list or records IDs with update, delete or create events.

Examples

Run this code
if (FALSE) {
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))
}

Run the code above in your browser using DataLab