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.

路徑參數

slug string 必填
公司的蛞蝓。範例 acme

請求內容

rating integer 必填
1–5 stars.範例 4
feedback_type string 必填
Review category, e.g. interview, culture, compensation.範例 interview
body string 必填
Free-text review.範例 Fast process, clear communication.
curl
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."}'
json — response
{
  "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 }
  }
}

要針對這個職缺調整履歷嗎?

目前無法檢查您與這個職缺的符合程度;請先將履歷加入個人檔案,下次即可查看。

A new version of freehire is available