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

Get newsletter subscribers

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

šŸ“‹ Get newsletter subscribers#

Description#

Returns a paginated list of newsletter subscribers for the associated community . Each row can include linked user profile data, profile image URL, community privilege, and resolved subscriber-list metadata when lists exist.
HTTP Method: GET
Endpoint: api/v1/global/newsletter/subscriber

Request Details#

Headers#

KeyTypeRequiredDescription
x-api-keystringYesAPI key provided by the Networked Team.

Query parameters#

ParameterTypeRequiredDescription
startnumberYesPagination start index .
countnumberYesPage size .
statusnumberNoFilter by subscriber status (ModelStatus). Examples: 1 Accepted, 60 Unsubscribe, 30 Deleted.
keywordstringNoRegex match on email or name (case-insensitive).
withListboolean / stringNoIf true, only subscribers with a non-empty subscriberList.
noListboolean / stringNoIf true, only subscribers with no lists.
listIdstring (repeatable)NoSubscriber list ObjectId; subscriber must include that list. Use multiple listId keys for several lists.
Note: Do not combine withList, noList, and listId filters in conflicting ways; the handler applies branches in order (withList → noList → listId).

Sample response#

{
  "data": {
    "customListWithTags": [
      {
        "_id": "67a1b2c3d4e5f6789012345a",
        "email": "reader@example.com",
        "name": "Reader Name",
        "status": 1,
        "community": "67959032bc6bea0012fdc670",
        "subscriberList": ["64b2c3d4e5f6789012345ab"],
        "subscriberLists": [{ "_id": "64b2c3d4e5f6789012345ab", "name": "Weekly digest" }],
        "user": { "_id": "...", "status": 1, "name": "...", "image": "..." },
        "userImage": { "url": "https://..." },
        "communityPrivilege": { "_id": "...", "status": 1 }
      }
    ],
    "totalCount": 42,
    "count": 30,
    "nextStart": true
  },
  "error": false,
  "message": "Operation completed successfully"
}

Response interface#


Response field descriptions#

KeyTypeDescription
data.customListWithTagsarraySubscriber documents with lookups (user, image, lists, privilege).
data.totalCountnumberTotal matching subscribers (all pages).
data.countnumberRequested page size (count query).
data.nextStartbooleantrue if more pages exist after this window.
errorbooleanfalse on success.
messagestringOutcome message.

Reference#

šŸ”— Standard Response Codes

Notes#

Use valid x-api-key scoped to your community.
Pagination: increase start by count while nextStart is true.

Request

Query Params

Header Params

Responses

🟢200
application/json
Bodyapplication/json

Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://backend.networked.co/api/v1/global/newsletter/subscriber?start=0&count=30' \
--header 'x-api-key: <your-api-key>'
Response Response Example
{
    "data": {
        "customListWithTags": [
            {
                "_id": "69ca3eedf9c0164ef42005f1",
                "subscriberList": [
                    "69ca46377851020013b82ab6"
                ],
                "status": 1,
                "email": "subscriber1@yopmail.com",
                "community": "69baa36beddb9f0012fdf0fa",
                "subscriberLists": [
                    {
                        "_id": "69ca46377851020013b82ab6",
                        "status": 1,
                        "name": "list1",
                        "community": "69baa36beddb9f0012fdf0fa",
                        "timeStamp": 1774863927338,
                        "__v": 0
                    }
                ]
            },
            {
                "_id": "69ca3eedf9c0164ef42005f2",
                "subscriberList": [],
                "status": 1,
                "email": "subscriber2@yopmail.com",
                "community": "69baa36beddb9f0012fdf0fa",
                "subscriberLists": []
            },
            {
                "_id": "69cb70a7818d4600124c213f",
                "subscriberList": [],
                "status": 1,
                "email": "subscriber23@yopmail.com",
                "community": "69baa36beddb9f0012fdf0fa",
                "subscriberLists": []
            }
        ],
        "totalCount": 3,
        "count": 30,
        "nextStart": false
    },
    "error": false,
    "message": "Operation completed successfully"
}
Modified atĀ 2026-05-15 11:59:17
Previous
Add newsletter subscribers
Next
Community Details
Built with