## Overview
The `SYSTEM_REQUEST_FOR_ACTION` allows the system to automatically request specific form fields to be edited by users. This action creates feedback entries that highlight which fields need attention.
### Basic Configuration
```json
{
"actionType": "SYSTEM_REQUEST_FOR_ACTION",
"args": {
"fieldNames": ["applicant_name", "national_id"],
"feedbackSection": "FORM",
"feedbackReason": "Validation required",
"comment": "Please correct the highlighted fields"
}
}
```
### Available Parameters
| Parameter | Type | Required | Default | Description |
| --- | --- | --- | --- | --- |
| `fieldNames` | `List<String>` | Yes | - | List of form field names to request for editing |
| `feedbackSection` | `String` | No | `"FORM"` | Section type (`FORM`, `ATTACHMENT`, `OTHER`) |
| `feedbackReason` | `String` | No | `"System request for field modification"` | Reason for the feedback request |
| `comment` | `String` | No | `"System automatically requested field modifications"` | Additional comment for the user |
| `officerSummary` | `String/Object` | No | `null` | |
```json
{
"actionType": "SYSTEM_REQUEST_FOR_ACTION",
"args": {
"certificateWithList": false,
"updateFieldWithDatasetValue": false,
"fieldNames": [
"proofOfPublication"
],
"feedbackSection": "ATTACHMENT",
"feedbackReason": "System validation failed",
"comment": "Please upload the proof of publication",
}
}
```