---
title: "Create Person"
method: POST
path: "/api/people"
tags: ["people"]
---

# Create Person

`POST /api/people`

## Request body

- PersonCreate
  - `first_name` string, nullable
  - `last_name` string, nullable
  - `email` string, nullable
  - `phone` string, nullable
  - `title` string, nullable
  - `linkedin_url` string, nullable
  - `company_id` string, uuid, nullable
  - `lifecycle_status` string
  - `prospecting_status` string
  - `consent_status` string
  - `outreach_excluded` boolean
  - `enrichment_data` object, nullable

## Response `201`

Successful Response

- PersonOut
  - `id` string, uuid, required
  - `first_name` string, nullable, required
  - `last_name` string, nullable, required
  - `email` string, nullable, required
  - `phone` string, nullable, required
  - `title` string, nullable, required
  - `linkedin_url` string, nullable, required
  - `company_id` string, uuid, nullable, required
  - `company_name` string, nullable
  - `lifecycle_status` string, required
  - `prospecting_status` string, required
  - `consent_status` string, required
  - `outreach_excluded` boolean, required
  - `re_engagement_count` integer, required
  - `enrichment_data` object, nullable, required
  - `enriched_at` string, date-time, nullable, required
  - `created_at` string, date-time, required
  - `updated_at` string, date-time, required

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/rethoric/apis/rethoric-os.md) · [All operations](https://skmtc.dev/rethoric/apis/rethoric-os/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/rethoric/rethoric-os/revisions/76b6d39426f6/schema)
