# Update a Person

**PUT** `/persons/{personId}/`

Update the Person with new data. NOTE that any contact channels that are omitted from this request will be DELETED. If you don't want to replace all data on the Person, you probably want to use PATCH instead.

## Request

### Parameters

- `personId` (path, required, string): The ID that uniquely identifies the Person

### Request Body

- `application/json` — Person (object)

### Responses

- `200`: The Person was updated
  - Content types: `application/json`
- `400`: Bad Request
  - Content types: `application/json`
- `404`: Not found response
  - Content types: `application/json`
