v3

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

Bulk create contacts

Creates or resolves up to 100 contact records in one request.

post/v1/contacts/bulk

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

Contacts were created or resolved.

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

Example response

{
  "success": true
}