/api/v1/global/newsletter/subscriber| Name | Type | Required | Description |
|---|---|---|---|
| x-api-key | String | ✅ Yes | API key provided by the Networked Team (external vendor key scoped to your community). |
| Content-Type | String | ✅ Yes | application/json |
application/json)| Name | Type | Required | Description |
|---|---|---|---|
| emails | String[] | ✅ Yes | List of email addresses to register as subscribers. |
| subscriberList | String[] | ❌ No | Subscriber list IDs to attach to each new subscriber (same lists applied to all emails in this request). |
{
"emails": [
"subscriber1@example.com",
"subscriber2@example.com"
],
"subscriberList": []
}
{
"data": {},
"error": false,
"message": "Operation completed successfully"
}
interface SubscriberAddRequest {
emails: string[];
subscriberList?: string[];
}
x-api-key authorized for your community.curl --location 'https://backend.networked.co/api/v1/global/newsletter/subscriber' \
--header 'x-api-key: <your-api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
"emails": [
"subscriber23@yopmail.com"
],
"subscriberList": []
}'{
"data": {},
"error": false,
"message": "Operation completed successfully"
}