Job reports

POST /reports/{id}/dismiss Moderator

Dismiss a report with a reason.

Path parameters

id integer required
The report id.Example 3

Body

reason string
Why it was dismissed.Example not an issue
curl
curl -X POST "https://freehire.dev/api/v1/reports/3/dismiss" \
  -H "Authorization: Bearer $MODERATOR_API_KEY" \
  -H 'Content-Type: application/json' \
  -d '{"reason":"not an issue"}'
json — response
{ "data": { "id": 3, "status": "dismissed", "review_reason": "not an issue" } }