Application
Streamer.bot application events emitted by the WebSocket Server
Overview
You can enable Application
events with this Subscribe request:
Subscribe Request
{
"request": "Subscribe",
"id": "my-subscribe-id",
"events": {
"Application": [
"ActionAdded",
"ActionUpdated",
"ActionDeleted"
]
},
}
Events
ActionAdded
Emitted when a new action is created in Streamer.bot
{
id: string;
name: string;
group: string;
enabled: boolean;
}
ActionUpdated
Emitted when an action is modified in Streamer.bot
{
id: string;
name: string;
group: string;
enabled: boolean;
}
ActionDeleted
Emitted when an action has been deleted in Streamer.bot
{
id: string;
name: string;
group: string;
enabled: boolean;
}