Skip to main content
PATCH
/
api
/
v1
/
lists
/
{listId}
Update List
curl --request PATCH \
  --url https://api.sequenzy.com/api/v1/lists/{listId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "description": "<string>",
  "isPrivate": true
}
'
{
  "success": true,
  "list": {
    "id": "list_abc123",
    "name": "Newsletter Subscribers",
    "description": "Weekly newsletter audience",
    "isPrivate": false,
    "createdAt": "2026-05-20T10:00:00.000Z"
  }
}
Update a subscriber list’s name, description, or privacy flag. Only the fields you provide are changed.

Request

listId
string
required
Subscriber list ID.
name
string
New list name.
description
string
New list description. Pass null to clear it.
isPrivate
boolean
Whether the list is hidden from public preference pages.
curl -X PATCH "https://api.sequenzy.com/api/v1/lists/list_abc123" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"name": "Newsletter Subscribers", "isPrivate": false}'

Responses

{
  "success": true,
  "list": {
    "id": "list_abc123",
    "name": "Newsletter Subscribers",
    "description": "Weekly newsletter audience",
    "isPrivate": false,
    "createdAt": "2026-05-20T10:00:00.000Z"
  }
}