> ## Documentation Index
> Fetch the complete documentation index at: https://docs.orova.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Update Contact

> Update an existing contact

## Request

```bash theme={null}
curl -X PUT "https://app.orova.ai/api/contacts/CONTACT_ID" \
  -H "x-api-key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "contactName": "John Smith",
    "region": "US West"
  }'
```

## Path parameters

| Parameter | Type   | Description |
| --------- | ------ | ----------- |
| `id`      | string | Contact ID  |

## Body parameters

All fields from [Create Contact](/api-reference/contacts/create) are accepted. Only include the fields you want to update.

## Response

Returns the updated contact object.
