update_response
Modify survey responses in LimeSurvey using the survey ID and response ID. Ensure accurate and updated survey data by editing specific responses within the platform.
Instructions
Update a response in a LimeSurvey survey.
Args:
sid: The survey ID.
response_id: The response ID.
response: The updated response.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
response | Yes | ||
response_id | Yes | ||
sid | Yes |
Input Schema (JSON Schema)
{
"properties": {
"response": {
"additionalProperties": true,
"title": "Response",
"type": "object"
},
"response_id": {
"title": "Response Id",
"type": "integer"
},
"sid": {
"title": "Sid",
"type": "integer"
}
},
"required": [
"sid",
"response_id",
"response"
],
"title": "update_responseArguments",
"type": "object"
}