-
Notifications
You must be signed in to change notification settings - Fork 10
REDCap Version Export
asaweero edited this page Aug 22, 2017
·
4 revisions
Exports the current REDCap version as a string.
There are no required/optional parameters to get the REDCap Version.
- Returns the REDCap Version number.
redcap.redcapVersion.export (function (error, res) {
// error containts oprtional errors
if (err) {
// handle error
}
else {
// res is return value
console.log (res);
}
});