add_response
Add survey responses to LimeSurvey using the survey ID and response data. Integrates with the LimeSurvey MCP Server to manage survey data efficiently.
Instructions
Add a response to a LimeSurvey survey.
Args:
sid: The survey ID.
response: The response to add.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
response | Yes | ||
sid | Yes |
Input Schema (JSON Schema)
{
"properties": {
"response": {
"additionalProperties": true,
"title": "Response",
"type": "object"
},
"sid": {
"title": "Sid",
"type": "integer"
}
},
"required": [
"sid",
"response"
],
"title": "add_responseArguments",
"type": "object"
}