Screening answers
PUT /me/screening-answers 僅限工作階段
Update one or more screening answers.
A field the body omits is left unchanged. An unrecognized country code, a currency that is not a three-letter ISO 4217 code, a period outside the vocabulary, a non-positive salary, or a negative notice period is a 400 naming the invalid value.
請求內容
authorized_countriesstring[]- ISO alpha-2 country codes you are authorized to work in.範例
["DE","NL"] visa_sponsorship_neededboolean- Whether you need visa sponsorship.
desired_salary_amountinteger- Desired salary figure.範例
90000 desired_salary_currencystring- Three-letter ISO 4217 currency code.範例
EUR desired_salary_periodstring- Salary period, e.g.
year,month.範例year notice_period_daysinteger- Notice period in days.範例
30 willing_to_relocateboolean- Whether you are willing to relocate.
age_18_or_olderboolean- Whether you are 18 or older.
curl -X PUT "https://freehire.me/api/v1/me/screening-answers" \
-b cookies.txt -H 'Content-Type: application/json' \
-d '{"willing_to_relocate":true,"notice_period_days":30}'{
"data": {
"authorized_countries": ["DE", "NL"],
"visa_sponsorship_needed": false,
"desired_salary_amount": 90000,
"desired_salary_currency": "EUR",
"desired_salary_period": "year",
"notice_period_days": 30,
"willing_to_relocate": true,
"age_18_or_older": true
}
}