Skip to content

Survey Export Queue Link

asaweero edited this page Aug 22, 2017 · 3 revisions

Exports a string containing a link to the Survey Queue if your project has the Survey Queue feature enabled.

Required Parameters

  • record: The record ID. The record's name in the project.

Return Value

  • Returns a link (URL) to a Survey Queue.

Method Usage

   var params = {
      record: '1'
   };

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