---
title: "Creates a contact"
method: POST
path: "/contacts"
tags: ["Contacts"]
---

# Creates a contact

`POST /contacts`

## Request body

- Contact
  - `contact` object
    - `first_name` string
    - `last_name` string
    - `tag_list` string[]
    - `created_at` string, date-time
    - `updated_at` string, date-time
    - `contact_emails_attributes` object[]
      - `email` string
      - `primary` boolean
    - `contact_phones_attributes` object[]
      - `phone_number` string
      - `country_code` string
      - `primary` boolean

## Response `200`

Successful operation

- object
  - `data` Contact
    - `contact` object
      - `first_name` string
      - `last_name` string
      - `tag_list` string[]
      - `created_at` string, date-time
      - `updated_at` string, date-time
      - `contact_emails_attributes` object[]
        - `email` string
        - `primary` boolean
      - `contact_phones_attributes` object[]
        - `phone_number` string
        - `country_code` string
        - `primary` boolean

## Other responses

- `403` — Contact already exists
- `500` — Internal Server Error

---

[API](https://skmtc.dev/gettruss/apis/api-v1.md) · [All operations](https://skmtc.dev/gettruss/apis/api-v1/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/gettruss/api-v1/revisions/9418bb2b65bf/schema)
