Company feedback
POST /companies/{slug}/feedback 僅限工作階段
Create or overwrite your feedback in one category on a company.
One entry per (user, category): posting again in the same feedback_type overwrites your existing review rather than adding a second one. The response's nested company field is the freshly recomputed rating count/average, so you can update your own view of the company without a second fetch. 422 on an empty body, 429 past the daily review cap.
路徑參數
slugstring 必填- 公司的蛞蝓。範例
acme
請求內容
ratinginteger 必填- 1–5 stars.範例
4 feedback_typestring 必填- Review category, e.g.
interview,culture,compensation.範例interview bodystring 必填- Free-text review.範例
Fast process, clear communication.
curl -X POST "https://freehire.me/api/v1/companies/acme/feedback" \
-b cookies.txt -H 'Content-Type: application/json' \
-d '{"rating":4,"feedback_type":"interview","body":"Fast process, clear communication."}'{
"data": {
"id": 5,
"author": "quiet-falcon-42",
"rating": 4,
"feedback_type": "interview",
"body": "Fast process, clear communication.",
"created_at": "2026-06-18T09:12:00Z",
"updated_at": "2026-06-18T09:12:00Z",
"company": { "feedback_count": 12, "feedback_rating_avg": 4.1 }
}
}