職缺互動
GET /me/interviews 工作階段或 API 金鑰
Arranged meetings whose start falls in the date range.
The calendar’s second layer beside /me/timeline: a meeting is arranged and can move or be cancelled, unlike a ledger event which happened and cannot change. status is suggested, confirmed, or cancelled — a cancelled meeting is still served, not withheld. Both bounds are required, RFC3339.
查詢參數
fromstring (RFC3339) 必填- Lower bound, inclusive.範例
2026-08-01T00:00:00Z tostring (RFC3339) 必填- 上限,包含在內。範例
2026-08-31T23:59:59Z
curl "https://freehire.me/api/v1/me/interviews?from=2026-08-01T00:00:00Z&to=2026-08-31T23:59:59Z" -H "Authorization: Bearer $FREEHIRE_API_KEY"{
"data": [
{
"id": 3,
"application_id": 31,
"starts_at": "2026-08-20T13:00:00Z",
"ends_at": "2026-08-20T13:30:00Z",
"title": "Interview with Acme",
"join_url": "https://meet.example.com/abc",
"status": "confirmed",
"company_slug": "acme",
"role_title": "Senior Go Engineer",
"job_slug": "senior-go-engineer-acme-1a2b"
}
],
"meta": { "from": "2026-08-01T00:00:00Z", "to": "2026-08-31T23:59:59Z", "count": 1 }
}