I am using R to get data about the participants from the token table.
I use list_participants and I looked up the documentation at:
api.limesurvey.org/classes/remotecontrol...od_list_participants
But I want more than just the tid, token, firstname and lastname.
Frans Marcelissen helped me out, using older knowledge. So now I use:
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)
)
survey_tokens<-call_limer("list_participants", list(survey_list$sid
,0,999999,F, all_attributes))
But what come to mind: how do I know if I retrieve all information that I need? Is there a way of showing all attributes that can be retrieved?