Skip to content

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.

Return Value

  • Returns the REDCap Version number.

Method Usage

    redcap.redcapVersion.export (function (error, res) {
      // error containts oprtional errors
      if (err) {
          // handle error
      }
      else {
          // res is return value
          console.log (res);
      }
    });