-
Notifications
You must be signed in to change notification settings - Fork 10
Records Delete
asaweero edited this page Aug 22, 2017
·
5 revisions
Allows you to delete records from the project.
-
records
: an array of record IDs to delete.
-
arms
: An array of arms you wish to delete.
- Returns the number of records deleted.
var params = {
records: recs
};
redcap.records.importRecords (params, function (err, res) {
// error containts oprtional errors
if (err) {
// handle error
}
else {
// res is return value
console.log (res);
}
}