add_quota
Enhance LimeSurvey surveys by defining and adding quotas using specific survey IDs and quota data, ensuring response limits are managed effectively.
Instructions
Add a quota to a LimeSurvey survey.
Args:
    sid: The survey ID.
    quota_data: The quota data.
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| quota_data | Yes | ||
| sid | Yes | 
Input Schema (JSON Schema)
{
  "properties": {
    "quota_data": {
      "additionalProperties": true,
      "title": "Quota Data",
      "type": "object"
    },
    "sid": {
      "title": "Sid",
      "type": "integer"
    }
  },
  "required": [
    "sid",
    "quota_data"
  ],
  "title": "add_quotaArguments",
  "type": "object"
}