invite_participants
Send invitations to participants for a LimeSurvey survey using their tokens or invite all by specifying the survey ID. Simplifies participant engagement in surveys.
Instructions
Invite participants to a LimeSurvey survey.
Args:
sid: The survey ID.
tokens: The participant tokens. If None, invite all participants.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
sid | Yes | ||
tokens | No |
Input Schema (JSON Schema)
{
"properties": {
"sid": {
"title": "Sid",
"type": "integer"
},
"tokens": {
"default": null,
"items": {
"type": "string"
},
"title": "Tokens",
"type": "array"
}
},
"required": [
"sid"
],
"title": "invite_participantsArguments",
"type": "object"
}