---
title: "Edit CRM entity item"
method: PATCH
path: "/crm/v1/entities/{entity}/{itemId}"
tags: ["items"]
---

# Edit CRM entity item

`PATCH /crm/v1/entities/{entity}/{itemId}`

Updates an existing CRM entity item. Only provided fields are updated.
Example: `PATCH /crm/v1/entities/leads/14`

## Request body

- CrmEntity
  - `title` string
  - `owner` integer
  - `source` string
  - `email` object[]
    - `id` string
    - `type` string
    - `value` string
    - `main` boolean
  - `phone` object[]
    - `id` string
    - `type` 'WORK' | 'MOBILE' | 'HOME'
    - `value` string
    - `code` string
  - `messengers` object[]
    - `id` string
    - `type` string
    - `link` string

## Response `200`

OK

- object
  - `title` string
  - `owner` integer
  - `source` string
  - `email` object[]
    - `id` string
    - `type` string
    - `value` string
    - `main` boolean
  - `phone` object[]
    - `id` string
    - `type` 'WORK' | 'MOBILE' | 'HOME'
    - `value` string
    - `code` string
  - `messengers` object[]
    - `id` string
    - `type` string
    - `link` string
  - `id` integer
  - `created_by` integer
  - `changed_by` integer
  - `created_at` integer
  - `updated_at` integer

## Other responses

- `401` — Access token is missing or invalid
- `422` — Validation error response

---

[API](https://skmtc.net/uspacy/apis/crm-service-2.md) · [All operations](https://skmtc.net/uspacy/apis/crm-service-2/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/uspacy/crm-service-2/versions/f80578d43845/schema)
