import_question
Add a question to a LimeSurvey survey by importing a base64-encoded question file into a specific survey and group. Streamlines survey customization and management.
Instructions
Import a question to a LimeSurvey survey.
Args:
sid: The survey ID.
gid: The group ID.
question_file: The question file content (base64 encoded).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
gid | Yes | ||
question_file | Yes | ||
sid | Yes |
Input Schema (JSON Schema)
{
"properties": {
"gid": {
"title": "Gid",
"type": "integer"
},
"question_file": {
"title": "Question File",
"type": "string"
},
"sid": {
"title": "Sid",
"type": "integer"
}
},
"required": [
"sid",
"gid",
"question_file"
],
"title": "import_questionArguments",
"type": "object"
}