---
title: "Update a contact"
method: PATCH
path: "/users/me/contacts/{contactId}"
tags: ["contacts"]
---

# Update a contact

`PATCH /users/me/contacts/{contactId}`

## Path parameters

- `contactId` number, required

## Request body

- UpdateContactDto
  - `name` string — Display name
  - `addresses` ContactAddressesDto
    - `evm` string[] — EVM addresses (0x-prefixed hex)
    - `solana` string[] — Solana addresses
    - `bitcoin` string[] — Bitcoin addresses

## Response `200`

Updated contact

- ContactResponseDto
  - `id` number, required — Contact ID
  - `name` string, required — Display name
  - `addresses` ContactAddressesDto, required
    - `evm` string[] — EVM addresses (0x-prefixed hex)
    - `solana` string[] — Solana addresses
    - `bitcoin` string[] — Bitcoin addresses
  - `createdAt` string, required — Creation timestamp (ISO-8601)

## Other responses

- `400` — Validation error, or the update would leave no address
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not found

---

[API](https://skmtc.dev/dre/apis/dre-api.md) · [All operations](https://skmtc.dev/dre/apis/dre-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/dre/dre-api/revisions/5d14beb9482b/schema)
