-
Notifications
You must be signed in to change notification settings - Fork 10
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.
-
record
: The record ID. The record's name in the project.
- Returns a link (URL) to a Survey Queue.
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);
}
});