1. Directory
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
        GET
      • Roles List
        GET
    • 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
      • Get newsletter subscribers
    • 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. Directory

Roles List

GET
https://backend.networked.co/api/v1/global/tags/community

🏷️ Get Community Tags#

Fetches the list of global tags (roles) configured for communities on the platform.

HTTP Method#

GET

Endpoint#

/api/v1/global/tags/community

Headers#

NameTypeRequiredDescription
x-api-keyString✅ YesA confidential API key provided by the Networked Team for authenticated use.

Sample Response#

{
  "data": [
    {
      "tagId": "67959032****ea0012fdc676",
      "name": "Moderator",
      "description": "",
      "type": 1
    },
    {
      "tagId": "67959032****0012fdc677",
      "name": "Contributor",
      "description": "",
      "type": 2
    },
    {
      "tagId": "67959032bc****0012fdc675",
      "name": "Admin",
      "description": "",
      "type": 0
    },
    {
      "tagId": "67959032bc6bea****fdc678",
      "name": "Viewer",
      "description": "",
      "type": 3
    }
  ],
  "error": false,
  "message": "Success"
}

Response Interface#

interface GetCommunityTagsResponse {
  data: Tag[];
  error: boolean;
  message: string;
}
interface Tag {
  tagId: string;
  name: string;
  description: string;
  type: number;
}

Response Field Descriptions#

FieldTypeDescription
dataArrayList of tag objects configured globally for community roles.
errorBooleanIndicates whether the request resulted in an error.
messageStringHuman-readable message about the result.
Tag Object#
FieldTypeDescription
tagIdStringUnique identifier for the tag.
nameStringDisplay name of the tag.
descriptionStringDescription for the tag (can be empty).
typeNumberNumeric value representing the role type.
Type Mapping#
TypeRole Name
0Admin
1Moderator
2Contributor
3Viewer

Reference#

🔗 Response Codes

Notes#

These tags help define user permissions and responsibilities within a community.
Tags are created and managed by Networked Admins and are not community-editable.
Useful when assigning roles to users during community onboarding or moderation logic.

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/tags/community' \
--header 'x-api-key: <your-api-key>'
Response Response Example
{
    "data": [
        {
            "tagId": "67959032bc6bea0012fdc675",
            "name": "Admin",
            "description": "",
            "type": 0
        },
        {
            "tagId": "67959032bc6bea0012fdc676",
            "name": "Moderator",
            "description": "",
            "type": 1
        },
        {
            "tagId": "67959032bc6bea0012fdc677",
            "name": "Contributor",
            "description": "",
            "type": 2
        },
        {
            "tagId": "67959032bc6bea0012fdc678",
            "name": "Viewer",
            "description": "",
            "type": 3
        },
        {
            "tagId": "68739cdd8bf6c100121117f2",
            "name": "Architect ",
            "description": "",
            "type": 1
        }
    ],
    "error": false,
    "message": "Operation completed successfully"
}
Modified at 2026-05-15 11:03:01
Previous
Users List
Next
Monetization
Built with