Skip to main content
POST
/
api
/
v1
/
lists
Create Subscriber List
curl --request POST \
  --url https://api.sequenzy.com/api/v1/lists \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "description": "<string>",
  "isPrivate": true
}
'
{
  "success": true,
  "list": {
    "id": "list_abc123",
    "name": "VIP Customers",
    "description": "High-value customers",
    "isPrivate": false
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.sequenzy.com/llms.txt

Use this file to discover all available pages before exploring further.

Create a subscriber list for grouping contacts.

Request

name
string
required
List name.
description
string
Optional list description.
isPrivate
boolean
Whether the list is internal/private.
curl -X POST "https://api.sequenzy.com/api/v1/lists" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"name": "VIP Customers", "description": "High-value customers"}'

Responses

{
  "success": true,
  "list": {
    "id": "list_abc123",
    "name": "VIP Customers",
    "description": "High-value customers",
    "isPrivate": false
  }
}