GET
/
grievances
/
{grievance_id}
curl --request GET \
  --url https://grm-api.vercel.app/grievances/{grievance_id} \
  --header 'Authorization: Bearer <token>'
{
  "status": "<string>",
  "grievance": {
    "id": "<string>",
    "title": "<string>",
    "description": "<string>",
    "category": "<string>",
    "priority": "medium",
    "user_id": "<string>",
    "status": "pending",
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z",
    "resolution_notes": "<string>",
    "grievance_received_date": "2023-11-07T05:31:56Z",
    "grievance_closing_date": "2023-11-07T05:31:56Z",
    "organisation_closing_date": "2023-11-07T05:31:56Z",
    "org_status_date": "2023-11-07T05:31:56Z",
    "reported_as_covid19_case_date": "2023-11-07T05:31:56Z",
    "covid19_category": "<string>",
    "reformed_flag": false,
    "cpgrams_category": "<string>",
    "reformed_top_level_category": "<string>",
    "reformed_last_level_category": "<string>",
    "forwarded_to_subordinate": true,
    "forwarded_to_subordinate_details": "<string>",
    "rating": 123,
    "feedback": "<string>",
    "satisfaction_level": "<string>",
    "final_reply": "<string>",
    "appeal_no": "<string>",
    "appeal_date": "2023-11-07T05:31:56Z",
    "appeal_reason": "<string>",
    "appeal_closing_date": "2023-11-07T05:31:56Z",
    "appeal_closing_remarks": "<string>",
    "organisation_grievance_receive_date": "2023-11-07T05:31:56Z",
    "organisation_grievance_close_date": "2023-11-07T05:31:56Z",
    "officers_forwarding_grievance": "<string>",
    "date_of_receiving": "2023-11-07T05:31:56Z",
    "officer_closed_by": "<string>",
    "final_status": "<string>"
  }
}

Retrieves a grievance by its unique identifier. This endpoint returns the complete grievance details including all fields such as title, description, category, status, timestamps, and any additional metadata related to the grievance processing.

If the grievance is not found, a 404 error is returned. The response includes a status field and the complete grievance object with all its properties.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

grievance_id
string
required

ID of grievance to fetch

Response

200
application/json

Grievance response

The response is of type object.