My great "teacher" (Frans Marcelissen) showed me this (using R):
library(limer)
options(stringsAsfactors=FALSE)
LSURL<-[your url to limesurvey api]
LSUSER=[your-user]
LSPASSWORD=[your-password]
options(lime_api = LSURL)
options(lime_username = LSUSER)
options(lime_password = LSPASSWORD)
get_session_key()
sid<-[your sid]
call_limer("list_participants", list(sid,0,999999,F))
all_attributes<- c('id',
'completed',
'participant_id',
'language string',
'usesleft',
'firstname',
'lastname',
'email',
'blacklisted',
'validfrom',
'sent',
'validuntil',
'remindersent',
'mpid',
'emailstatus',
'remindercount',
paste0('attribute_',1:100)
)
call_limer("list_participants", list(sid,0,999999,F, all_attributes))
Maybe this helps. I do not have any experience with other languages.
Tammo ter Hark at Respondage
For Limesurvey reporting, education and customized themes
respondage.nl
The topic has been locked.