---
title: "Update Person"
method: PATCH
path: "/api/people/{person_id}"
tags: ["people"]
---

# Update Person

`PATCH /api/people/{person_id}`

## Path parameters

- `person_id` string, uuid, required

## Request body

- PersonUpdate
  - `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, nullable
  - `prospecting_status` string, nullable
  - `consent_status` string, nullable
  - `outreach_excluded` boolean, nullable
  - `enrichment_data` object, nullable

## Response `200`

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)
