---
title: "Create contact"
method: POST
path: "/v1/contacts"
tags: ["Contacts"]
---

# Create contact

`POST /v1/contacts`

Create a new contact within a workspace. Only workspaceId is required. Optional fields include contactListId, firstName, lastName, email, and phone.

## Request body

- CreateContact
  - `workspaceId` string, uuid, required — Workspace ID to create contact in (required)
  - `contactListId` string, uuid — Contact list ID to assign contact to
  - `firstName` string — Contact first name
  - `lastName` string — Contact last name
  - `email` string, email — Contact email address
  - `phone` string — Contact phone number

## Response `201`

Contact created successfully

- Contact
  - `id` string, uuid, required — Unique contact identifier
  - `workspaceId` string, uuid, required — Workspace ID that owns this contact
  - `contactListId` string, uuid, nullable, required — Contact list ID (null if not in a list)
  - `firstName` string, nullable, required — Contact first name
  - `lastName` string, nullable, required — Contact last name
  - `email` string, email, nullable, required — Contact email address
  - `phone` string, nullable, required — Contact phone number
  - `createdAt` string, date-time, required — Contact creation timestamp
  - `updatedAt` string, date-time, required — Contact last update timestamp
  - `deletedAt` string, date-time, nullable, required — Soft delete timestamp (null if active)

## Other responses

- `400` — Validation error - invalid request body
- `401` — Missing or invalid API key
- `403` — API key does not have access to this workspace

---

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