-
Notifications
You must be signed in to change notification settings - Fork 10
Users Export
asaweero edited this page Aug 22, 2017
·
6 revisions
Exports an array of objects representing the users participating in the creation of the project.
Export has no optional/required parameters.
- Returns all the user privileges and attributes listed below.
username, email, firstname, lastname, expiration, data_access_group,
design, user_rights, data_access_groups, data_export, reports, stats_and_charts,
manage_survey_participants, calendar, data_import_tool, data_comparison_tool,
logging, file_repository, data_quality_create, data_quality_execute,
api_export, api_import, mobile_app, mobile_app_download_data, record_create,
record_rename, record_delete, lock_records_customization, lock_records,
lock_records_all_forms, forms
redcap.users.export (function (err, res) {
// error containts oprtional errors
if (err) {
// handle error
}
else {
// res is return value
console.log (res);
}
});