Update Profile
Profile
Update Profile
Update your career profile
PATCH
Update Profile
Overview
The Update Profile endpoint lets you modify your career profile. The scalar identity and contact fields (name, email, phone, address, links, and the profile scalars below) are shared and appear on every resume - editing them here propagates to all resumes. The collection arrays (summaries, projects, certificates, etc.) write your base (default) resume’s content, which is the canonical content that new resumes are copied from.
Common use cases:
- AI agent profile management - keep your profile up to date as your career evolves.
- Bulk updates - update multiple fields at once after a job change.
- LinkedIn sync - pull data from LinkedIn and push it to your Mokaru profile.
Scope required:
profile:write | Rate limit: 20 requests/minRequest
Body Parameters
All fields are optional. Only include the fields you want to change. Passnull to clear a field.
First name (max 100 characters)
Last name (max 100 characters)
Email address (max 254 characters)
Phone number (max 50 characters, null to clear)
Address (max 200 characters, null to clear)
Country (max 100 characters, null to clear)
Province or state (max 100 characters, null to clear)
Birth date in ISO format, e.g. “1990-01-15” (null to clear)
Driver license type (max 50 characters, null to clear)
Gender (max 50 characters, null to clear)
Current job title (max 200 characters, null to clear)
Professional summary (max 2000 characters, null to clear)
Industry sector (max 100 characters, null to clear)
Current employer (max 200 characters, null to clear)
LinkedIn username or URL. Automatically normalized to a full URL. (null to clear)
Personal website URL. https:// is added if missing. (max 500 characters, null to clear)
Portfolio URL. https:// is added if missing. (max 500 characters, null to clear)
Collection fields (replace-list semantics)
These accept full arrays. Passing an array REPLACES the entire collection. To add one item without losing existing entries, first callGET /v1/profile, append to the returned array, then send the full updated array back. Omit the field to leave the collection unchanged; pass [] to clear it. Hard cap of 100 items per collection (50 for jobTitles).
Professional summary versions:
{ title?: string, content: string }[]Projects:
{ name, description, organisation?, startDate?, endDate?, isCurrent?, url? }[]Certificates:
{ name, issuer, description?, issueDate?, expiryDate?, credentialId?, verificationUrl? }[]Awards:
{ name, organisation?, description?, date? }[]Publications:
{ name, publisher?, date?, url?, description? }[]Interests:
{ name, description? }[]Career-identity job titles:
{ title: string }[]Example
Response
Whether the profile was updated
LinkedIn usernames are automatically converted to full URLs. For example,
"jane-smith" becomes "https://linkedin.com/in/jane-smith". Website and portfolio URLs have https:// prepended if no protocol is specified.