curl --request POST \
--url https://api.emailr.dev/v1/contacts/bulk \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"contacts": [
{
"email": "contact@example.com",
"first_name": "John",
"last_name": "Doe",
"subscribed": true,
"metadata": {
"source": "website",
"plan": "pro"
}
}
]
}
'