1. Newsletter
Networked API Documentation
  • Getting Started
  • User Authentication
    • Add New Users to Community
      POST
    • Send email invites
      POST
  • User Profile
    • User Profile
      GET
    • Profile Visits
      GET
  • Community
    • Features
      • Feature List
    • Directory
      • Users List
      • Roles List
    • Monetization
      • Plans
        • Plans List
    • Feed
      • Polls
        • Create Polls
      • Surveys
        • Create Surveys
      • Post
        • Ask and offer help
          • Post Intro
          • Post Advice
          • Post Recommendation
          • Post Kudos
          • Post Help
        • Feed Post List
        • Post to Feed
        • Get Post Comments
        • Add Comments to Post
      • upload Media
    • Opportunities
      • Company and Services
        • Company and Services List
      • Fundaising Initiatives
        • Fundraising Initiatives List
      • Career Opportunities
        • Career Opportunities
    • Events
      • Event Post
      • Edit Events
      • Delete Event
      • Event List
    • Media Center
      • Get Resources
    • Analytics
      • Community Analytics
    • Newsletter
      • Lists
        • Get newsletter subscriber lists
      • Add newsletter subscribers
        POST
      • Get newsletter subscribers
        GET
    • Community Details
      GET
    • Spaces List
      GET
  • Webhooks
    • User Webhooks
      • user.joined
      • user.profile.updated
      • user.joined.space
    • Feed Webhooks
      • post.created
      • post.liked
      • post.unliked
      • comment.added
      • post.reported
  • References
    • Response Codes
      GET
    • Model Status
      GET
    • Post Types
      GET
  1. Newsletter

Add newsletter subscribers

POST
https://backend.networked.co/api/v1/global/newsletter/subscriber

✉️ Add newsletter subscribers#

Adds one or more newsletter subscribers (by email) to the your community . Emails that already exist for that community are not inserted again.

HTTP Method#

POST

Endpoint#

/api/v1/global/newsletter/subscriber

Headers#

NameTypeRequiredDescription
x-api-keyString✅ YesAPI key provided by the Networked Team (external vendor key scoped to your community).
Content-TypeString✅ Yesapplication/json

Body (application/json)#

NameTypeRequiredDescription
emailsString[]✅ YesList of email addresses to register as subscribers.
subscriberListString[]❌ NoSubscriber list IDs to attach to each new subscriber (same lists applied to all emails in this request).

Sample Request Body#

{
  "emails": [
    "subscriber1@example.com",
    "subscriber2@example.com"
  ],
  "subscriberList": []
}

Sample Response#

{
  "data": {},
  "error": false,
  "message": "Operation completed successfully"
}

TypeScript#

interface SubscriberAddRequest {
  emails: string[];
  subscriberList?: string[];
}

Reference#

🔗 Standard Response Codes

Notes#

This API must be used with a valid x-api-key authorized for your community.
Invalid emails fail validation; existing emails in the community are filtered out before insert.

Request

Header Params

Body Params application/json

Examples

Responses

🟢200
application/json
Bodyapplication/json

Request Request Example
Shell
JavaScript
Java
Swift
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": []
}'
Response Response Example
{
    "data": {},
    "error": false,
    "message": "Operation completed successfully"
}
Modified at 2026-05-15 11:58:47
Previous
Get newsletter subscriber lists
Next
Get newsletter subscribers
Built with