delete_group
Remove a group from a LimeSurvey survey by specifying the survey ID and group ID. This action helps manage survey structure efficiently.
Instructions
Delete a group from a LimeSurvey survey.
Args:
sid: The survey ID.
gid: The group ID.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
gid | Yes | ||
sid | Yes |
Input Schema (JSON Schema)
{
"properties": {
"gid": {
"title": "Gid",
"type": "integer"
},
"sid": {
"title": "Sid",
"type": "integer"
}
},
"required": [
"sid",
"gid"
],
"title": "delete_groupArguments",
"type": "object"
}