---
title: "Update a contact list"
method: PUT
path: "/v3/contact-lists/{id}"
tags: ["Contact Lists"]
---

# Update a contact list

`PUT /v3/contact-lists/{id}`

<small>_Requires the `contacts:write` scope (or a broader one that includes it)._</small>

Updates an existing contact list name.

## Path parameters

- `id` integer, required

## Request body

- object
  - `name` string, required — New contact list name

## Response `200`

Contact list updated successfully

- object — Contact list entity
  - `id` integer — Unique identifier of the contact list
  - `name` string — Contact list name
  - `isShared` boolean — Whether the contact list is shared across the team

## Other responses

- `400` — Route parameter / body validation failure, or a business-rule rejection.
- `401` — Unauthorized. The response body is empty; check the `WWW-Authenticate` header for the expected scheme.
- `403` — User does not have access to this list
- `404` — Contact list not found
- `409` — A contact list with the given name already exists
- `429` — Too Many Requests

---

[API](https://skmtc.net/reply/apis/reply-api.md) · [All operations](https://skmtc.net/reply/apis/reply-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/reply/reply-api/revisions/1c3d32eaf95e/schema)
