delete_participants
Remove specific participants from a LimeSurvey survey by providing the survey ID and participant tokens. Simplifies participant management in survey administration.
Instructions
Delete participants from a LimeSurvey survey.
Args:
    sid: The survey ID.
    tokens: The participant tokens.
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| sid | Yes | ||
| tokens | Yes | 
Input Schema (JSON Schema)
{
  "properties": {
    "sid": {
      "title": "Sid",
      "type": "integer"
    },
    "tokens": {
      "items": {
        "type": "string"
      },
      "title": "Tokens",
      "type": "array"
    }
  },
  "required": [
    "sid",
    "tokens"
  ],
  "title": "delete_participantsArguments",
  "type": "object"
}