copy_survey
Duplicate a LimeSurvey survey by specifying the source survey ID and assigning a new name for the copied survey. Simplifies survey replication for efficient management.
Instructions
Copy a LimeSurvey survey.
Args:
sid: The source survey ID.
new_name: The name for the new survey.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
new_name | Yes | ||
sid | Yes |
Input Schema (JSON Schema)
{
"properties": {
"new_name": {
"title": "New Name",
"type": "string"
},
"sid": {
"title": "Sid",
"type": "integer"
}
},
"required": [
"sid",
"new_name"
],
"title": "copy_surveyArguments",
"type": "object"
}