Skip to content

redcap delete records

Dustin edited this page Oct 6, 2020 · 1 revision

redcap-delete-records deletes the given records from a REDCap project.

Parameter Description
host Server hostname
token Authentication token (project and user specific!)
records A list of strings for the records to delete

Example

Deleting two records (IDs 1 and 2) from a project.

> (define redcap:token "54CC....CC10")
> (define redcap:hostname "redcap.INSTITUTIONNAME.ca")
> (redcap-delete-records redcap:hostname redcap:token (list "1" "2")
 #t
Clone this wiki locally