Skip to main content
POST
/
v1
/
contacts
Create contact
curl --request POST \
  --url https://api.octolane.com/v1/contacts \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "email": "jane@acme.com",
  "first_name": "<string>",
  "last_name": "<string>",
  "full_name": "<string>",
  "job_title": "<string>",
  "phone": "<string>",
  "seniority": "<string>",
  "linkedin": "<string>",
  "twitter": "<string>",
  "twitter_followers": 123,
  "current_company": "<string>",
  "other_emails": [
    "<string>"
  ],
  "type": "<string>",
  "avatar_url": "<string>",
  "email_verified": true,
  "first_email_interaction": "2023-11-07T05:31:56Z",
  "last_email_interaction": "2023-11-07T05:31:56Z",
  "first_meeting_interaction": "2023-11-07T05:31:56Z",
  "last_meeting_interaction": "2023-11-07T05:31:56Z",
  "last_interaction": "2023-11-07T05:31:56Z",
  "next_meeting": "2023-11-07T05:31:56Z"
}
'
{
  "success": true,
  "message": "<string>",
  "data": "<unknown>"
}

Authorizations

x-api-key
string
header
required

Public API key for the Octolane organization.

Body

application/json

Contact payload.

email
string<email>
required
Example:

"jane@acme.com"

first_name
string | null
last_name
string | null
full_name
string | null
job_title
string | null
phone
string | null
seniority
string | null
linkedin
string | null
twitter
string | null
twitter_followers
number | null
current_company
string | null
other_emails
type
string | null
avatar_url
string | null
email_verified
boolean | null
first_email_interaction
last_email_interaction
first_meeting_interaction
last_meeting_interaction
last_interaction
next_meeting

Response

Contact was created or resolved.

success
boolean
Example:

true

message
string
data
any

Endpoint-specific response payload.