GET/api/v1/global/tags/community| Name | Type | Required | Description |
|---|---|---|---|
| x-api-key | String | ✅ Yes | A confidential API key provided by the Networked Team for authenticated use. |
{
"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"
}
interface GetCommunityTagsResponse {
data: Tag[];
error: boolean;
message: string;
}
interface Tag {
tagId: string;
name: string;
description: string;
type: number;
}
| Field | Type | Description |
|---|---|---|
| data | Array | List of tag objects configured globally for community roles. |
| error | Boolean | Indicates whether the request resulted in an error. |
| message | String | Human-readable message about the result. |
Tag Object| Field | Type | Description |
|---|---|---|
| tagId | String | Unique identifier for the tag. |
| name | String | Display name of the tag. |
| description | String | Description for the tag (can be empty). |
| type | Number | Numeric value representing the role type. |
| Type | Role Name |
|---|---|
| 0 | Admin |
| 1 | Moderator |
| 2 | Contributor |
| 3 | Viewer |
curl --location 'https://backend.networked.co/api/v1/global/tags/community' \
--header 'x-api-key: <your-api-key>'{
"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"
}