Job reports
POST /reports/{id}/dismiss Moderator
Dismiss a report with a reason, optionally telling the reporter.
Path parameters
idinteger required- The report id.Example
3
Body
reasonstring- Why nothing changed. Emailed to the reporter verbatim when notify_reporter is set.Example
not an issue notify_reporterboolean- Email the reporter this decision. Defaults to false when omitted.Example
true
curl -X POST "https://freehire.me/api/v1/reports/3/dismiss" \
-H "Authorization: Bearer $MODERATOR_API_KEY" \
-H 'Content-Type: application/json' \
-d '{"reason":"not an issue"}'{ "data": { "id": 3, "status": "dismissed", "review_reason": "not an issue" } }