Job reports

POST /jobs/{slug}/reports Session or API key

Report a problem with a job.

Path parameters

slug string required
The job public_slug.

Body

reason string required
Short reason code/category.Example expired
details string
Free-text details.
contact_telegram string
Optional contact handle.
curl
curl -X POST "https://freehire.dev/api/v1/jobs/<slug>/reports" \
  -H "Authorization: Bearer $FREEHIRE_API_KEY" \
  -H 'Content-Type: application/json' \
  -d '{"reason":"expired","details":"posting returns 404"}'
json — response
{ "data": { "id": 3, "status": "pending", "reason": "expired" } }