cURL
curl --request PUT \ --url http://localhost:3091/v1/api/superadmin/reports/{id}/dismiss \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "adminNotes": "<string>" } '
{ "id": 123, "reporterId": 123, "reportedUserId": 123, "reason": "<string>", "description": "<string>", "status": "<string>", "adminNotes": "<string>", "createdAt": "2023-11-07T05:31:56Z", "resolvedAt": "2023-11-07T05:31:56Z" }
Dismisses a report with optional admin notes
JWT access token from POST /v1/api/auth/login
Report dismissed successfully