Get all grievances for a specific user with pagination support
fetch_all (boolean): When set to true, returns all grievances for the user without pagination. Default is false.page (integer): The page number to retrieve. Default is 1.size (integer): Number of grievances per page. Default is 10, maximum is 100.status: Operation statustotal: Total number of grievances for the userpage: Current page numbersize: Number of items per pagegrievances: Array of grievance objects with complete detailsBearer authentication header of the form Bearer <token>, where <token> is your auth token.
ID of the user whose grievances to fetch
Whether to fetch all grievances or paginate
Page number for pagination
x >= 1Number of items per page
1 <= x <= 100