---
title: "Adding contacts"
method: POST
path: "/api/v4/contacts"
---

# Adding contacts

`POST /api/v4/contacts`

This method allows adding multiple or singular contacts into the account

## Headers

- `Content-Type` string

## Request body

- object
  - `RAW_BODY` object[]
    - `name` string — Contact fullname
    - `first_name` string — Contact first name
    - `last_name` string — Contact last name
    - `responsible_user_id` integer — Contact responsible user ID
    - `created_by` integer — ID of the user who created the contact
    - `updated_by` integer — ID of the user who updated the contact last
    - `created_at` integer — Contact creation date in the format of Unix Timestamp
    - `updated_at` integer — Contact update date in the format of Unix Timestamp
    - `custom_fields_values` string, json — An array of the current contact custom fields’ values.
    - `_embedded` object — Embedded entities data
      - `tags` object[]
        - `id` integer — Tag ID
        - `name` string — Tag name
    - `tags_to_add` object[] — Array of tags to add
      - `id` integer — Tag ID
      - `name` string — Tag name

## Response `200`

200

- object
  - `_links` object
    - `self` object
      - `href` string
  - `_embedded` object
    - `contacts` object[]
      - `id` integer
      - `is_deleted` boolean
      - `is_unsorted` boolean
      - `request_id` string
      - `_links` object
        - `self` object
          - `href` string

## Other responses

- `400` — 400
- `401` — 401

---

[API](https://skmtc.net/kommo/apis/kommo-api-references.md) · [All operations](https://skmtc.net/kommo/apis/kommo-api-references/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/kommo/kommo-api-references/versions/f17af4d23c7c/schema)
