v3

latestOpenAPI 3.1.0raw.githubusercontent.com2026-06-273246117.6 KB
CRM

Create contact

Creates a contact from an email address, or returns the existing contact when the email is already present. Optional profile fields are persisted as attributes when supported.

post/v1/contacts

Request body

emailstring email required
first_namestring nullable
last_namestring nullable
full_namestring nullable
job_titlestring nullable
phonestring nullable
senioritystring nullable
linkedinstring nullable
twitterstring nullable
twitter_followersnumber nullable
current_companystring nullable
typestring nullable
avatar_urlstring nullable
email_verifiedboolean nullable

Example request

{
  "email": "jane@acme.com"
}

Response

Contact was created or resolved.

successboolean
messagestring
{"stackTrail":"components:schemas:ApiResponse:properties:data","oasType":"schema","type":"unknown","description":"Endpoint-specific response payload."}

Example response

{
  "success": true
}