delete_response
Remove a specific survey response by providing the survey ID and response ID to manage data in LimeSurvey MCP Server efficiently.
Instructions
Delete a response from a LimeSurvey survey.
Args:
sid: The survey ID.
response_id: The response ID.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
response_id | Yes | ||
sid | Yes |
Input Schema (JSON Schema)
{
"properties": {
"response_id": {
"title": "Response Id",
"type": "integer"
},
"sid": {
"title": "Sid",
"type": "integer"
}
},
"required": [
"sid",
"response_id"
],
"title": "delete_responseArguments",
"type": "object"
}