curl -X POST https://api2.ecomailapp.cz/lists/1/subscribe-bulk \
-H "key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"subscriber_data": [
{
"name": "Foo",
"surname": "Bar",
"email": "foo@bar.cz",
"custom_fields": { "category": "customer" }
},
{
"name": "Foo 2",
"email": "foo2@bar.cz"
}
],
"update_existing": true,
"resubscribe": false,
"trigger_autoresponders": false
}'