curl --request POST \
--url https://api.novu.co/v1/subscribers/bulk \
--header 'Content-Type: application/json' \
--data '{
"subscribers": [
{
"subscriberId": "<string>",
"email": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"phone": "<string>",
"avatar": "<string>",
"locale": "<string>",
"data": {}
}
]
}'
This response has no body data.
Using this endpoint you can create multiple subscribers at once, to avoid multiple calls to the API. The bulk API is limited to 500 subscribers per request.
curl --request POST \
--url https://api.novu.co/v1/subscribers/bulk \
--header 'Content-Type: application/json' \
--data '{
"subscribers": [
{
"subscriberId": "<string>",
"email": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"phone": "<string>",
"avatar": "<string>",
"locale": "<string>",
"data": {}
}
]
}'
This response has no body data.
Was this page helpful?