1. Lists
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
          GET
      • 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. Lists

Get newsletter subscriber lists

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

šŸ“‹ Get newsletter subscriber lists#

Description#

Returns all accepted newsletter subscriber lists for the associated community. Each item includes the list name, community id, status, optional timestamps, and a count of accepted subscribers assigned to that list (within the same community).
HTTP Method: GET
Endpoint: api/v1/global/newsletter/subscriberList

Request Details#

Headers#

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

Query parameters#

ParameterTypeRequiredDescription
(none)——This endpoint does not accept query parameters.

Sample response#

{
  "data": [
    {
      "_id": "507f1f77bcf86cd799439011",
      "community": "507f191e810c19729de860ea",
      "name": "Weekly digest",
      "status": 1,
      "count": 128,
      "timeStamp": 1711800000000
    }
  ],
  "error": false,
  "message": "Operation completed successfully"
}

Response interface#


Response field descriptions#

KeyTypeDescription
dataarraySubscriber list documents for the associated community.
data[].namestringDisplay name of the list.
data[].communitystringCommunity ObjectId the list belongs to.
data[].countnumberNumber of accepted subscribers on this list in this community.
data[].statusnumberList status (ModelStatus); accepted lists are returned.
data[].timeStampnumberOptional server timestamp.
errorbooleanfalse on success.
messagestringOutcome message.

Reference#

šŸ”— Standard Response Codes

Notes#

Use valid x-api-key scoped to your community.

Request

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/subscriberList' \
--header 'x-api-key: <your-api-key>'
Response Response Example
{
    "data": [
        {
            "_id": "69ca46377851020013b82ab6",
            "status": 1,
            "name": "list1",
            "community": "69baa36beddb9f0012fdf0fa",
            "timeStamp": 1774863927338,
            "__v": 0,
            "count": 0
        },
        {
            "_id": "69ca46377851020013b82ab7",
            "status": 1,
            "name": "list2",
            "community": "69baa36beddb9f0012fdf0fa",
            "timeStamp": 1774863927338,
            "__v": 0,
            "count": 0
        }
    ],
    "error": false,
    "message": "Operation completed successfully"
}
Modified atĀ 2026-05-15 11:57:56
Previous
Community Analytics
Next
Add newsletter subscribers
Built with