Skip to main content
POST
https://api2.ecomailapp.cz
/
lists
curl -X POST https://api2.ecomailapp.cz/lists \
  -H "key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "New list name",
    "from_name": "Ecomailapp.cz",
    "from_email": "test@ecomailapp.cz",
    "reply_to": "support@ecomail.cz"
  }'
{
  "name": "New list name",
  "id": 2
}
name
string
required
List name.
from_name
string
Sender name used in emails sent from this list.
from_email
string
Sender email address used in emails sent from this list.
reply_to
string
Reply-to email address.
sub_success_page
string
URL to redirect to after submitting a sign-up form.
sub_confirmed_page
string
URL to redirect to after confirming a sign-up email.
unsub_page
string
URL to redirect to after unsubscribing from the list.
double_optin
boolean
Whether sign-up confirmation (double opt-in) is required.
conf_subject
string
Subject line of the confirmation email.
conf_message
string
HTML content of the confirmation email.
curl -X POST https://api2.ecomailapp.cz/lists \
  -H "key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "New list name",
    "from_name": "Ecomailapp.cz",
    "from_email": "test@ecomailapp.cz",
    "reply_to": "support@ecomail.cz"
  }'
{
  "name": "New list name",
  "id": 2
}