---
title: "Update subscriber list"
method: PATCH
path: "/lists/{listId}"
tags: ["Lists"]
---

# Update subscriber list

`PATCH /lists/{listId}`

Updates a subscriber list's name, description, or privacy flag. Only provided fields are changed.

## Path parameters

- `listId` string, required

## Request body

- object
  - `name` string — New list name.
  - `description` string, nullable — New list description. Pass null to clear it.
  - `isPrivate` boolean — Set to true to keep the list internal and omit it from individual controls on the hosted subscriber email preferences/unsubscribe page. Set to false to expose its name and description on that page. List privacy does not override a subscriber's global unsubscribe. Omit this field to leave the current visibility unchanged.

## Response `200`

List updated

- object
  - `success` boolean
  - `list` SubscriberList
    - `id` string
    - `name` string
    - `description` string, nullable
    - `isPrivate` boolean — Whether the list is private. Private lists are omitted from the hosted subscriber email preferences/unsubscribe page and cannot be subscribed to or unsubscribed from individually there. Public lists expose their name and description on that page. List privacy does not override a subscriber's global unsubscribe.
    - `createdAt` string, date-time

## Other responses

- `401` — Unauthorized
- `404` — List not found
- `500` — List could not be updated

## Changes

- **2026-08-16** `6fd2903b91ce` — 3 info
  - added the optional property `code` to the response with the `401` status
  - added the optional property `code` to the response with the `404` status
  - added the optional property `code` to the response with the `500` status
- **2026-08-02** `36f92fc0caa2` — 3 breaking
  - the response property `success` became optional for the status `401`
  - the response property `success` became optional for the status `404`
  - the response property `success` became optional for the status `500`
- **2026-06-11** `ad2d3114269a` — 1 info
  - endpoint added

[Change history](https://skmtc.dev/sequenzy/apis/sequenzy-api/changes/lists/:listId/patch.md)

---

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