Creating Grievances
This guide explains how citizens can submit grievances through the Netasampark Grievance Portal.
Submission Methods
1. Web Portal
Visit the grievance portal website and click "Submit Grievance":
<form action="/api/grievances" method="POST">
<input type="text" name="subject" required>
<textarea name="description" required></textarea>
<select name="category" required>
<option value="infrastructure">Infrastructure</option>
<option value="water">Water Supply</option>
<option value="electricity">Electricity</option>
<option value="sanitation">Sanitation</option>
<option value="other">Other</option>
</select>
<input type="file" name="attachments" multiple>
<button type="submit">Submit</button>
</form>
2. Mobile App
Use the Netasampark mobile app:
- Open the app
- Navigate to "Grievances"
- Tap "Submit New"
- Fill in the form
- Attach photos if needed
- Submit
3. SMS
Send SMS to the grievance number:
GRIEVANCE <Category> <Description>
Example:
GRIEVANCE Infrastructure Pothole on Main Street near City Hall
4. WhatsApp
Send a message to the grievance WhatsApp number:
- Start with "GRIEVANCE"
- Include category
- Provide description
- Attach photos if available
Required Information
Mandatory Fields
- Subject: Brief title (max 100 characters)
- Description: Detailed description (min 20 characters)
- Category: Select from available categories
- Location: Address or landmark
Optional Fields
- Contact Information: Phone/Email (for updates)
- Attachments: Photos, documents (max 5MB each)
- Priority: Urgent/Normal/Low (default: Normal)
Anonymous Submission
You can submit grievances anonymously:
- No registration required
- No personal information needed
- Track using grievance ID only
- Limited to status checking
Registered Submission
Benefits of registered submission:
- Real-time notifications
- Email/SMS updates
- Response capability
- History tracking
- Rating system access
Grievance Categories
Infrastructure
- Roads and bridges
- Public buildings
- Street lighting
- Parks and recreation
Water Supply
- Water quality issues
- Supply interruptions
- Leakage complaints
- New connection requests
Electricity
- Power outages
- Voltage issues
- Street light repairs
- New connection requests
Sanitation
- Garbage collection
- Drainage issues
- Public toilets
- Waste management
Other
- Any other civic issues
- Suggestions
- Complaints
Best Practices
- Be Specific: Provide exact location and details
- Include Photos: Visual evidence helps faster resolution
- Follow Up: Check status regularly
- Be Patient: Complex issues may take time
- Provide Feedback: Rate the resolution
API Example
Submit Grievance
curl -X POST https://api.netasampark.com/api/grievances \
-H "Authorization: Bearer {token}" \
-H "Content-Type: application/json" \
-d '{
"subject": "Pothole on Main Street",
"description": "Large pothole causing traffic issues",
"category": "infrastructure",
"location": "Main Street, Near City Hall",
"priority": "urgent",
"anonymous": false
}'
Response
{
"success": true,
"message": "Grievance submitted successfully",
"data": {
"id": "GRV-2024-001234",
"status": "submitted",
"submitted_at": "2024-01-15T10:30:00Z",
"estimated_resolution": "2024-01-22T10:30:00Z"
}
}