---
title: "Update a contact's details"
method: PUT
path: "/contacts/my/{id}"
---

# Update a contact's details

`PUT /contacts/my/{id}`

Change the details of a specific contact providing the contact’s id.

## Path parameters

- `id` string, required

## Headers

- `Content-Type` string, required
- `Authorization` string, required

## Request body

- object
  - `labels` object
    - `name` string — The name of the label.
    - `value` string — The value of the label.
  - `email` string — The e-mail address of the contact.
  - `firstName` string — The first name of the contact. The length must be between 1 and 60.
  - `lastName` string — The last name of the contact. The length must be between 1 and 60.
  - `mobile` string, required — The mobile number of the contact.
  - `vip` boolean — Indicates whether the contact is treated as vip or not. Default value false

## Response `200`

200

- object
  - `id` string
  - `firstName` string
  - `lastName` string
  - `mobile` string
  - `country` string
  - `vip` boolean
  - `groups` string[]
  - `blacklistedServices` object[]
  - `labels` object[]

## Other responses

- `400` — 400

---

[API](https://skmtc.net/routee/apis/auth.md) · [All operations](https://skmtc.net/routee/apis/auth/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/routee/auth/versions/5cef04e8f7d8/schema)
