Create a subscriber list
cURL
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 IndexFetch the complete documentation index at: https://docs.sequenzy.com/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: https://docs.sequenzy.com/llms.txt
Use this file to discover all available pages before exploring further.
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"}'