v2
latestOpenAPI 3.0.02026-07-26365590.3 KBContacts
Create a contact
Creates a new contact in your organization
post/v1/contacts
Headers
x-workspace-idstring uuid
Target workspace id (from GET /v1/workspaces). Required for multi-workspace API keys to designate which workspace to write to; omit for single-workspace keys, where it is resolved automatically. Must be within the API key scope.
Request body
Example request
{
"firstName": "John",
"lastName": "Doe",
"email": "john.doe@example.com",
"company": "Acme Inc.",
"city": "Paris",
"country": "France",
"url": "https://example.com",
"linkedinUrl": "https://linkedin.com/in/johndoe",
"linkedinSalesUrl": "https://linkedin.com/sales/people/johndoe",
"role": "CTO",
"allowPhoneCalls": true,
"phoneNumbers": [
"+33612345678"
],
"customFields": {
"industry": "Technology",
"team_size": "50-100"
}
}Response
The created contact
Example response
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"firstName": "John",
"lastName": "Doe",
"allowPhoneCalls": true,
"callCount": 5,
"teamId": "550e8400-e29b-41d4-a716-446655440000",
"phoneNumbers": [
"+33612345678"
],
"customFields": {
"Industry": "Technology",
"Size": "50-100"
}
}