Create a Note
Creates a note attached to a person (Contact) or company (Company), identified by domain identifiers rather than by list/contact IDs. For a person, supply at least one of linkedin_url, email, crm_id, or phone. For a company, supply at least one of website_url or name. If no matching record exists yet, a minimal Contact or Company is created on the fly and the note is attached to its stable ID.
Creates a note attached to a person (Contact) or a company (Company). Unlike the older list-scoped endpoints, v2 notes are addressed by domain identifiers rather than by contact-list and contact IDs — so you can attach a note without first looking the person up in a list. The target is resolved from the identifiers you provide. If no matching record exists yet, a minimal Contact or Company is created on the fly and the note is attached to its stable ID.Documentation Index
Fetch the complete documentation index at: https://docs.salesfinity.ai/llms.txt
Use this file to discover all available pages before exploring further.
Request Body
| Field | Type | Required | Max Length | Description |
|---|---|---|---|---|
type | string | Yes | — | person or company. Determines which identifier fields are required. |
user_id | string | Yes | — | ID of the team member authoring the note. Must be a member of the team that owns the API key. |
content | string | Yes | 10,000 | Plain text content of the note. |
Person identifiers (type: "person")
Supply at least one of:
| Field | Type | Max Length | Description |
|---|---|---|---|
linkedin_url | string | 500 | LinkedIn profile URL. Username is extracted automatically. |
email | string | 320 | Email address. |
crm_id | string | 200 | External CRM identifier (e.g. salesforce:003XXX). |
phone | string | 50 | Phone number in E.164 format. |
| Field | Type | Max Length | Description |
|---|---|---|---|
company_name | string | 300 | Company name to link to the person. |
company_website | string | 500 | Company website to link to the person. |
Company identifiers (type: "company")
Supply at least one of:
| Field | Type | Max Length | Description |
|---|---|---|---|
website_url | string | 500 | Company website URL. Normalized to hostname for matching. |
name | string | 300 | Company name. Case-insensitive match against the company name list. |
Example Request — person
Example Request — company
Response (201)
Returns the created note object. For a person note,contact is set; for a company note, company is set.
Errors
| Status | Description |
|---|---|
| 400 | Validation failed (e.g. no identifier supplied for the chosen type), or user_id is not a member of the team |
Authorizations
Body
Target type. Determines which identifier fields are required.
person, company "person"
ID of the team member authoring the note. Must be a member of the team that owns the API key.
"507f1f77bcf86cd799439011"
Plain text content of the note
10000"Mentioned moving back from Lisbon next quarter."
LinkedIn profile URL (person only). Username is extracted automatically. Person notes require at least one of linkedin_url, email, crm_id, or phone.
500"https://linkedin.com/in/johndoe"
External CRM identifier (person only)
200"salesforce:003XXX"
Phone number in E.164 format (person only)
50"+14155552671"
Company name to link to the person if a new Contact is created. Ignored if the person already exists. (person only)
300"Acme Corp"
Company website to link to the person if a new Contact is created. Ignored if the person already exists. (person only)
500"https://acme.com"
Company website URL (company only). Normalized to hostname for matching. Company notes require at least one of website_url or name.
500"https://acme.com"
Company name (company only). Case-insensitive match against the company name list.
300"Acme Corp"
Response
Note created successfully
"507f1f77bcf86cd799439011"
"507f1f77bcf86cd799439012"
Note author. Populated when available; otherwise just the user ID under _id.
Plain text content of the note
Whether this note is pinned to the top
Contact this note is attached to (mutually exclusive with company)
Company this note is attached to (mutually exclusive with contact)