Patch a single built-in field (name, role, company, location, domain, linkedin) on a person row.
field values:
| Field | What changes |
|---|---|
name | Splits on spaces into profileData.firstName, lastName, fullName |
role | Sets both profileData.currentRole and profileData.headline |
company | Sets profileData.currentCompany |
location | Sets profileData.location.linkedinText |
domain | Sets profileData.enrichment.company_domain. Also updates the linked company row’s domain (lowercased) when companyRowId is non-null |
linkedin | Sets the row’s linkedin_url column directly |
PUT /api/lists/{id}/cells for those.
domain. When you PATCH field=domain on a row whose companyRowId is non-null, the linked company row’s domain is also updated (lowercased). This keeps person-domain and company-domain views consistent without a second call.name is split on whitespace. "Jane Mary Doe" becomes firstName: "Jane", lastName: "Mary Doe", fullName: "Jane Mary Doe". If you need a specific first/last-name split, use POST /api/lists/{id}/rows with explicit firstName and lastName on a fresh row instead.Unknown fields are rejected. This endpoint only updates built-in columns. Passing a custom column name returns 400 "Unknown field: <name>". To update an enrichment cell, call PUT /api/lists/{id}/cells.Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
List UUID.
^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$Row UUID within the list.
^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$Update a single built-in field on a row. For enrichment cell updates, use PUT /api/lists/{id}/cells instead.
Which built-in field to update. name splits on spaces into firstName/lastName/fullName. role also updates headline. domain additionally updates the linked company row's domain (lowercased) when companyRowId is set. linkedin updates the row's LinkedIn URL column directly.
name, role, company, location, domain, linkedin New value for the field.
Field updated.
true