set_group_properties
Configure group properties in LimeSurvey by specifying the group ID and desired properties. Simplify survey management with direct property updates.
Instructions
Set LimeSurvey group properties.
Args:
gid: The group ID.
properties: The properties to set.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
gid | Yes | ||
properties | Yes |
Input Schema (JSON Schema)
{
"properties": {
"gid": {
"title": "Gid",
"type": "integer"
},
"properties": {
"additionalProperties": true,
"title": "Properties",
"type": "object"
}
},
"required": [
"gid",
"properties"
],
"title": "set_group_propertiesArguments",
"type": "object"
}