Skip to main content
POST
/
api
/
contacts
/
create
Create Contact
curl --request POST \
  --url https://a.contactlevel.com/api/contacts/create \
  --header 'Content-Type: application/json' \
  --header 'X-Api-Key: <api-key>' \
  --data '
{
  "organization_id": "<string>",
  "audience_id": "<string>",
  "first_name": "<string>",
  "last_name": "<string>",
  "job_title": "<string>",
  "functional_area": "<string>",
  "company_name": "<string>",
  "company_domain": "<string>",
  "company_linkedin_url": "<string>",
  "city": "<string>",
  "state_region": "<string>",
  "country": "<string>",
  "postal_code": "<string>",
  "linkedin_url": "<string>",
  "work_emails": [
    "<string>"
  ],
  "personal_emails": [
    "<string>"
  ],
  "phones": [
    "<string>"
  ],
  "age": 123,
  "gender": "<string>"
}
'
{
  "organization_id": "<string>",
  "contact_id": "<string>",
  "contact": {
    "id": "<string>",
    "organization_id": "<string>",
    "data_import_id": "<string>",
    "contact_id": "<string>",
    "company_id": "<string>",
    "first_name": "<string>",
    "last_name": "<string>",
    "work_emails": [
      "<string>"
    ],
    "personal_emails": [
      "<string>"
    ],
    "phones": [
      "<string>"
    ],
    "linkedin_url": "<string>",
    "job_title": "<string>",
    "functional_area": "<string>",
    "company_name": "<string>",
    "company_linkedin_url": "<string>",
    "company_domain": "<string>",
    "company_country": "<string>",
    "company_industry": "<string>",
    "city": "<string>",
    "state_region": "<string>",
    "country": "<string>",
    "postal_code": "<string>",
    "age": 123,
    "dob": "2023-12-25",
    "year_of_birth": 123,
    "gender": "<string>",
    "person_image_url": "<string>",
    "company_image_url": "<string>"
  },
  "credits_consumed": 123,
  "credit_balance": 123
}

Authorizations

X-Api-Key
string
header
required

Query Parameters

required_credits
integer
default:1

Body

application/json
organization_id
string
required
audience_id
string
required
first_name
string | null
last_name
string | null
job_title
string | null
functional_area
string | null
company_name
string | null
company_domain
string | null
company_linkedin_url
string | null
city
string | null
state_region
string | null
country
string | null
postal_code
string | null
linkedin_url
string | null
work_emails
string[] | null
personal_emails
string[] | null
phones
string[] | null
age
integer | null
gender
string | null

Response

Successful Response

organization_id
string
required
contact_id
string
required
contact
Api_Organization_contact · object
credits_consumed
integer | null
credit_balance
integer | null