Group.UsersAdded
WebSocket event schema, payload, and examples
groupId
string
groupName
string
groupBots
boolean required
count
integer required
users
BaseViewer[]
display
string
id
string
name
string
role
integer required
Value | Name |
---|---|
0 | Unknown |
1 | Viewer |
2 | Vip |
3 | Moderator |
4 | Broadcaster |
subscribed
boolean required
type
string
Schema
The JSON Schema for the event payload, if available.
schema.json
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "UsersGroupEvent",
"type": "object",
"additionalProperties": false,
"properties": {
"groupId": {
"type": [
"null",
"string"
]
},
"groupName": {
"type": [
"null",
"string"
]
},
"groupBots": {
"type": "boolean"
},
"count": {
"type": "integer",
"format": "int32"
},
"users": {
"type": [
"array",
"null"
],
"items": {
"$ref": "#/definitions/BaseViewer"
}
}
},
"definitions": {
"BaseViewer": {
"type": "object",
"additionalProperties": false,
"properties": {
"display": {
"type": [
"null",
"string"
]
},
"id": {
"type": [
"null",
"string"
]
},
"name": {
"type": [
"null",
"string"
]
},
"role": {
"$ref": "#/definitions/ViewerRole"
},
"subscribed": {
"type": "boolean"
},
"type": {
"type": [
"null",
"string"
]
}
}
},
"ViewerRole": {
"type": "integer",
"description": "",
"x-enum-names": [
"Unknown",
"Viewer",
"Vip",
"Moderator",
"Broadcaster"
],
"x-enum-varnames": [
"Unknown",
"Viewer",
"Vip",
"Moderator",
"Broadcaster"
],
"x-enumNames": [
"Unknown",
"Viewer",
"Vip",
"Moderator",
"Broadcaster"
],
"x-enum-descriptions": [
null,
null,
null,
null,
null
],
"x-enumDescriptions": [
null,
null,
null,
null,
null
],
"enum": [
0,
1,
2,
3,
4
]
}
}
}
JSON Payload
An example JSON payload for the event, automatically generated using JSONSchemaFaker
example.json
{
"count": 12137797,
"groupBots": false,
"groupId": "dolor commodo eiusmod",
"groupName": "Lorem minim ut amet sit",
"users": [
{
"display": null,
"id": null,
"name": "laborum aute Duis",
"role": 0,
"subscribed": false,
"type": "dolore laborum irure ullamco aliqua"
},
{
"display": "veniam nulla anim in nisi",
"id": null,
"name": null,
"role": 3,
"subscribed": true,
"type": "reprehenderit labore est"
},
{
"display": null,
"id": null,
"name": null,
"role": 1,
"subscribed": true,
"type": null
},
{
"display": null,
"id": "qui aliqua sint",
"name": null,
"role": 3,
"subscribed": false,
"type": "non exercitation proident veniam cillum"
},
{
"display": "consectetur cillum adipisicing dolore",
"id": "in est laborum tempor",
"name": null,
"role": 2,
"subscribed": false,
"type": null
}
]
}
Client Example
Example code showing how to subscribe to this event using the Streamer.bot WebSocket Client
index.js
// Initialize the Streamer.bot WebSocket Client
const client = new StreamerbotClient();
// Subscribe to "Group.UsersAdded" events and register a callback
client.on('Group.UsersAdded', ({ event, data }) => {
// Code here will run every time the event is received!
console.log('Received event:', event.source, event.type);
console.log('Event data:', data);
});