import_cpdb_participants
Transfer participants from the central database to a specified LimeSurvey survey, filtering by specific attributes to streamline survey targeting.
Instructions
Import participants from the central participant database.
Args:
sid: The survey ID.
attributes: The attributes to filter participants.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
attributes | Yes | ||
sid | Yes |
Input Schema (JSON Schema)
{
"properties": {
"attributes": {
"additionalProperties": true,
"title": "Attributes",
"type": "object"
},
"sid": {
"title": "Sid",
"type": "integer"
}
},
"required": [
"sid",
"attributes"
],
"title": "import_cpdb_participantsArguments",
"type": "object"
}