個人檔案與履歷
PUT /me/resume/contacts 僅限工作階段
Override one or more contact-block fields on your profile.
Each body field is owned per field: a value you set here takes over that field from whatever the structured résumé extract would otherwise contribute. Omit a field to leave it as-is; to clear rather than override, use POST /me/resume/contacts/replace-from-cv.
請求內容
full_namestring- Overrides the extracted name.
emailstring- Overrides the extracted email.
phonestring- Overrides the extracted phone.
locationstring- Overrides the extracted location.
linksstring[]- Overrides the extracted links.
headlinestring- A one-line positioning statement.
summarystring- A short profile summary.
languagesstring[]- Spoken/written languages.
certificationsstring[]- Certifications to show.
educationobject[]- Education entries to show.
curl -X PUT "https://freehire.me/api/v1/me/resume/contacts" -b cookies.txt \
-H 'Content-Type: application/json' -d '{"email":"[email protected]","phone":"+1 555 0100"}'{ "data": { "full_name": "Jane Doe", "email": "[email protected]", "phone": "+1 555 0100", "location": "Berlin, Germany" } }