Skip to main content
POST
/
api
/
career
/
recommend
/
jobs
/
feedback
Feedback Recommendation Job
curl --request POST \
  --url https://api.example.com/api/career/recommend/jobs/feedback \
  --header 'Content-Type: application/json' \
  --data '
{
  "event_type": "open",
  "job_id": "<string>",
  "impression_id": "<string>",
  "location_filter": "<string>",
  "metadata": {},
  "min_score_pct": 50,
  "position": 2,
  "ranking_variant": "<string>",
  "ranking_version": "<string>",
  "request_id": "<string>",
  "score_pct": 50,
  "top_k": 25
}
'
{
  "event_id": "<string>",
  "success": true,
  "recorded_at": "2023-11-07T05:31:56Z"
}

Body

application/json

Feedback signal for one recommendation interaction event.

event_type
enum<string>
required
Available options:
open,
upvote,
downvote,
apply,
dismiss,
save,
view
job_id
string
required
Required string length: 1 - 128
impression_id
string | null
Maximum string length: 128
location_filter
string | null
Maximum string length: 128
metadata
Metadata · object
min_score_pct
number | null
Required range: 0 <= x <= 100
position
integer | null
Required range: x >= 1
ranking_variant
string | null
Maximum string length: 64
ranking_version
string | null
Maximum string length: 64
request_id
string | null
Maximum string length: 128
score_pct
number | null
Required range: 0 <= x <= 100
top_k
integer | null
Required range: 1 <= x <= 50

Response

Successful Response

Persisted feedback event acknowledgment.

event_id
string
required
success
boolean
required
recorded_at
string<date-time>