---
title: "Create a new contact"
method: POST
path: "/contacts/my"
---

# Create a new contact

`POST /contacts/my`

Create a new contact or update it if it already exists.

## Headers

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

## Request body

- object
  - `labels` object — Contains the contact's labels with their respective values.
    - `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[]
  - `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)
