> For the complete documentation index, see [llms.txt](https://docs.monolithforensics.com/monolith/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.monolithforensics.com/monolith/monolith-api/contacts-api/update-contact.md).

# Update Contact

## Update Contact

<mark style="color:orange;">`PUT`</mark> `/api/v1/contacts/{uuid}`

Update an existing contact. Pass the contact's `uuid` in the path and include only the fields you want to change. Every field except `name` can be cleared by sending `null` or an empty string.

**Path Params**

| Name   | Type              | Description                                 |
| ------ | ----------------- | ------------------------------------------- |
| `uuid` | string (required) | Monolith unique identifier for the contact. |

**Request Body**

All fields are optional. Same fields as Create Contact: `name`, `email`, `title`, `organization`, `contact_type`, `unique_id`, `description`, `address`, `city`, `state`, `province`, `country`, `postal_code`, `office_number`, `mobile_number`.

**Response**

```json
{
  "message": "Contact Updated",
  "uuid": "wM7K2pQrSt9vXyZbN3hLmK",
  "success": true
}
```
