set_participant_properties
Update participant properties in LimeSurvey using token, survey ID, and custom attributes. Streamline survey management by modifying participant details directly.
Instructions
Set LimeSurvey participant properties.
Args:
token: The participant token.
sid: The survey ID.
properties: The properties to set.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
properties | Yes | ||
sid | Yes | ||
token | Yes |
Input Schema (JSON Schema)
{
"properties": {
"properties": {
"additionalProperties": true,
"title": "Properties",
"type": "object"
},
"sid": {
"title": "Sid",
"type": "integer"
},
"token": {
"title": "Token",
"type": "string"
}
},
"required": [
"token",
"sid",
"properties"
],
"title": "set_participant_propertiesArguments",
"type": "object"
}