curl --location --request POST 'https://api.maildesk.io/api/subscribers/bulk' \
--header 'Content-Type: application/json' \
--data-raw '{
"subscribers": [
{
"email": "john.doe@example.com",
"firstName": "John",
"lastName": "Doe",
"isConfirmed": "true | false",
"tags": [
"tag1",
"tag2"
]
}
]
}'{
"failed": [
{
"index": 3,
"email": "duplicate@example.com",
"reason": "DUPLICATE_IN_REQUEST"
}
]
}